Skip to content

Commit

Permalink
refactor: Added tty: true back in now that the issue has been fixed…
Browse files Browse the repository at this point in the history
… in the Docker Compose API `2.4.1` ([#9348](docker/compose#9348))
  • Loading branch information
khalwat committed Apr 7, 2022
1 parent 82a80b7 commit 74685c0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ services:
env_file: &env_v3
- ./cms_v3/.env
init: true
tty: true
volumes: &php-volumes_v3
# Change the path below to map to your local plugin repositories
- /Users/andrew/webdev/craft_v3:/Users/andrew/webdev/craft_v3
Expand All @@ -73,6 +74,7 @@ services:
env_file: &env_v4
- ./cms_v4/.env
init: true
tty: true
volumes: &php-volumes_v4
# Change the path below to map to your local plugin repositories
- /Users/andrew/webdev/craft_v4:/Users/andrew/webdev/craft_v4
Expand All @@ -95,6 +97,7 @@ services:
env_file:
*env_v3
init: true
tty: true
volumes:
*php-volumes_v3
# php_xdebug_v4 - run php-fpm with xdebug
Expand All @@ -107,6 +110,7 @@ services:
env_file:
*env_v4
init: true
tty: true
volumes:
*php-volumes_v4
# postgres - database
Expand Down Expand Up @@ -134,6 +138,7 @@ services:
env_file:
*env_v3
init: true
tty: true
volumes:
*php-volumes_v3
# queue_v4 - runs queue jobs via php craft queue/listen
Expand All @@ -146,6 +151,7 @@ services:
env_file:
*env_v4
init: true
tty: true
volumes:
*php-volumes_v4
# redis - key/value database for caching & php sessions
Expand Down

0 comments on commit 74685c0

Please sign in to comment.