update env vars

This commit is contained in:
Taylor Otwell 2020-12-10 09:26:21 -06:00
parent 03ecf00f7a
commit ddb26fbc50
1 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ services:
mysql:
image: 'mysql:8.0'
ports:
- '${DB_PORT}:3306'
- '${FORWARD_DB_PORT:-3306}:3306'
environment:
MYSQL_ROOT_PASSWORD: '${DB_PASSWORD}'
MYSQL_DATABASE: '${DB_DATABASE}'
@ -46,7 +46,7 @@ services:
redis:
image: 'redis:alpine'
ports:
- '${REDIS_PORT}:6379'
- '${FORWARD_REDIS_PORT:-6379}:6379'
volumes:
- 'sailredis:/data'
networks: