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

27 lines
374 B
YAML
Raw Normal View History

2019-11-25 21:52:22 +00:00
version: "2.4"
services:
app:
build: .
ports:
- "5000:5000"
entrypoint: python3 run.py
2019-11-25 21:52:22 +00:00
working_dir: /app
depends_on:
- db
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