Skip to content

Commit c11312a

Browse files
committed
Use sleep infinity instead
1 parent 7e312a3 commit c11312a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/env/lib/build-docker-compose-config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ module.exports = function buildDockerComposeConfig( config ) {
254254
image: developmentWpCliImage,
255255
volumes: developmentMounts,
256256
user: cliUser,
257-
command: 'tail -F dne', // Keeps the service alive.
257+
command: 'sleep infinity', // Keeps the service alive.
258258
environment: {
259259
...dbEnv.credentials,
260260
...dbEnv.development,
@@ -266,7 +266,7 @@ module.exports = function buildDockerComposeConfig( config ) {
266266
image: testsWpCliImage,
267267
volumes: testsMounts,
268268
user: cliUser,
269-
command: 'tail -F dne', // Keeps the service alive.
269+
command: 'sleep infinity', // Keeps the service alive.
270270
environment: {
271271
...dbEnv.credentials,
272272
...dbEnv.tests,

0 commit comments

Comments
 (0)