reddichat/app/docker-compose.yml

22 lines
484 B
YAML
Raw Normal View History

2020-12-07 03:24:45 -06:00
version: '2'
services:
redis:
image: redis:6
ports:
- 6380:6379
2020-12-17 01:31:18 -06:00
volumes:
- /sync/src/code/reddichat/node_modules/.cache/@latus/redis:/data
2020-12-07 03:24:45 -06:00
mysql:
image: mysql:8
command:
- '--default-authentication-plugin=mysql_native_password'
environment:
- MYSQL_DATABASE=db
- MYSQL_ROOT_PASSWORD=UNSAFE_DEV_PASSWORD
ports:
- 32342:3306
2020-12-17 01:31:18 -06:00
volumes:
- /sync/src/code/reddichat/node_modules/.cache/@latus/db:/var/lib/mysql