2019-12-04 11:50:46 +07:00
|
|
|
version: "3"
|
2018-04-17 21:21:42 +07:00
|
|
|
|
|
|
|
services:
|
2019-12-04 11:50:46 +07:00
|
|
|
app:
|
2019-12-07 14:45:41 +07:00
|
|
|
image: ngoduykhanh/powerdns-admin:latest
|
2019-12-04 11:50:46 +07:00
|
|
|
container_name: powerdns_admin
|
2018-04-17 21:21:42 +07:00
|
|
|
ports:
|
2019-12-04 11:50:46 +07:00
|
|
|
- "9191:80"
|
2018-04-17 21:21:42 +07:00
|
|
|
logging:
|
|
|
|
driver: json-file
|
|
|
|
options:
|
|
|
|
max-size: 50m
|
|
|
|
environment:
|
2019-12-04 11:50:46 +07:00
|
|
|
- SQLALCHEMY_DATABASE_URI=mysql://pda:changeme@host.docker.internal/pda
|
2020-04-29 18:20:21 +02:00
|
|
|
- GUNICORN_TIMEOUT=60
|
2019-12-04 11:50:46 +07:00
|
|
|
- GUNICORN_WORKERS=2
|
|
|
|
- GUNICORN_LOGLEVEL=DEBUG
|
2020-04-17 17:01:29 +03:00
|
|
|
- OFFLINE_MODE=False # True for offline, False for external resources
|