Archived
1
0
Fork 0
This repository has been archived on 2024-12-18. You can view files and clone it, but cannot push or open issues or pull requests.
restockbot/docker-compose-mysql.yml
Julien Riou 9f51c62776
Add MySQL support (#24)
Signed-off-by: Julien Riou <julien@riou.xyz>
2021-04-08 15:20:23 +02:00

24 lines
No EOL
415 B
YAML

---
version: "2"
services:
chromium:
container_name: restockbot-chromium
image: montferret/chromium
ports:
- "9222:9222"
restart: always
mysql:
container_name: restockbot-mysql
env_file:
- ./docker/mysql.env
image: mysql:8
ports:
- "3306:3306"
volumes:
- mysql-storage:/var/lib/mysql
restart: always
volumes:
mysql-storage:
driver: local