mirror of
https://github.com/kmitresse/Cards-Rush.git
synced 2026-05-14 09:05:23 +00:00
13 lines
243 B
YAML
13 lines
243 B
YAML
version: '2'
|
|
services:
|
|
db:
|
|
image: mysql:latest
|
|
volumes:
|
|
- ./mysql:/docker-entrypoint-initdb.d
|
|
environment:
|
|
- MYSQL_DATABASE=db
|
|
- MYSQL_ROOT_PASSWORD=root
|
|
ports:
|
|
- "6033:3306"
|
|
expose:
|
|
- "3306" |