This repository has been archived on 2023-10-01. You can view files and clone it, but cannot push or open issues or pull requests.
PyNyaaTa/docker-compose.yml

25 lines
347 B
YAML
Raw Normal View History

2019-11-25 21:52:22 +00:00
version: "2.4"
services:
app:
build: .
ports:
- "5000:5000"
2019-11-30 17:09:30 +00:00
entrypoint: python3 app.py
2019-11-25 21:52:22 +00:00
working_dir: /app
2019-11-30 22:42:35 +00:00
env_file:
- .env.dist
- .env
2019-11-25 21:52:22 +00:00
volumes:
- .:/app
db:
image: mariadb
ports:
- "3306:3306"
2019-11-30 22:42:35 +00:00
env_file:
- .env.dist
- .env
2019-11-25 21:52:22 +00:00
volumes:
- ./.db:/var/lib/mysql