33 lines
446 B
YAML
33 lines
446 B
YAML
version: "2.4"
|
|
|
|
services:
|
|
app:
|
|
build: .
|
|
ports:
|
|
- "5000:5000"
|
|
entrypoint: python3 run.py
|
|
working_dir: /app
|
|
depends_on:
|
|
- db
|
|
- redis
|
|
env_file:
|
|
- .env.dist
|
|
- .env
|
|
volumes:
|
|
- .:/app
|
|
|
|
db:
|
|
image: mariadb
|
|
ports:
|
|
- "3306:3306"
|
|
env_file:
|
|
- .env.dist
|
|
- .env
|
|
volumes:
|
|
- ./.db:/var/lib/mysql
|
|
|
|
redis:
|
|
image: redis
|
|
ports:
|
|
- "6379:6379"
|