mirror of
https://github.com/TracksApp/tracks.git
synced 2025-09-21 21:40:48 +02:00
19 lines
299 B
YAML
19 lines
299 B
YAML
version: '3'
|
|
services:
|
|
db:
|
|
image: mysql:5.7
|
|
environment:
|
|
MYSQL_ALLOW_EMPTY_PASSWORD: '1'
|
|
volumes:
|
|
- "db-data:/var/lib/mysql"
|
|
web:
|
|
build: .
|
|
volumes:
|
|
- "${VOLUME:-.:/app/workdir}"
|
|
ports:
|
|
- "3000:3000"
|
|
depends_on:
|
|
- db
|
|
volumes:
|
|
db-data:
|
|
|