Skip to content

Commit

Permalink
Use sleep infinity instead
Browse files Browse the repository at this point in the history
  • Loading branch information
noahtallen committed Apr 27, 2023
1 parent 7e312a3 commit c11312a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/env/lib/build-docker-compose-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ module.exports = function buildDockerComposeConfig( config ) {
image: developmentWpCliImage,
volumes: developmentMounts,
user: cliUser,
command: 'tail -F dne', // Keeps the service alive.
command: 'sleep infinity', // Keeps the service alive.
environment: {
...dbEnv.credentials,
...dbEnv.development,
Expand All @@ -266,7 +266,7 @@ module.exports = function buildDockerComposeConfig( config ) {
image: testsWpCliImage,
volumes: testsMounts,
user: cliUser,
command: 'tail -F dne', // Keeps the service alive.
command: 'sleep infinity', // Keeps the service alive.
environment: {
...dbEnv.credentials,
...dbEnv.tests,
Expand Down

0 comments on commit c11312a

Please sign in to comment.