Skip to content

Commit 3656ada

Browse files
refactor: Move tty configuration for nginx and apache services to a consistent position in docker-compose files. (#118)
1 parent 719ea19 commit 3656ada

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docker-compose.nginx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ services:
2020
- '8082:80'
2121
- '8445:443'
2222
restart: always
23+
tty: true
2324
volumes:
2425
- ./:/app
2526
- composer_cache:/var/www/.composer/cache
2627
working_dir: /app
27-
tty: true
2828

2929
volumes:
3030
composer_cache:

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ services:
2020
- '8080:80'
2121
- '8443:443'
2222
restart: always
23+
tty: true
2324
volumes:
2425
- ./:/app
2526
- composer_cache:/var/www/.composer/cache
2627
working_dir: /app
27-
tty: true
2828

2929
volumes:
3030
composer_cache:

0 commit comments

Comments
 (0)