Michel Roux
323930982f
All checks were successful
continuous-integration/drone/push Build is passing
42 lines
597 B
YAML
42 lines
597 B
YAML
version: "2.4"
|
|
|
|
services:
|
|
app:
|
|
build: .
|
|
ports:
|
|
- "5000:5000"
|
|
entrypoint: python3 run.py
|
|
working_dir: /app
|
|
depends_on:
|
|
- db
|
|
- flaresolverr
|
|
- 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"
|
|
|
|
flaresolverr:
|
|
image: flaresolverr/flaresolverr
|
|
ports:
|
|
- "8191:8191"
|
|
env_file:
|
|
- .env.dist
|
|
- .env
|