mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-08 14:40:27 +00:00
23 lines
485 B
YAML
23 lines
485 B
YAML
version: "2.1"
|
|
|
|
services:
|
|
powerdns-admin:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
image: powerdns-admin
|
|
container_name: powerdns-admin
|
|
mem_limit: 256M
|
|
memswap_limit: 256M
|
|
tty: true
|
|
command: /usr/bin/supervisord -c /etc/supervisord.conf
|
|
ports:
|
|
- "9191:9191"
|
|
volumes:
|
|
- .:/powerdns-admin/
|
|
- "./configs/development.py:/powerdns-admin/config.py"
|
|
logging:
|
|
driver: json-file
|
|
options:
|
|
max-size: 50m
|