18 lines
321 B
YAML
18 lines
321 B
YAML
version: "2"
|
|
|
|
services:
|
|
|
|
aap:
|
|
build: .
|
|
image: ${DOCKER_IMAGENAME}
|
|
restart: unless-stopped
|
|
logging:
|
|
driver: json-file
|
|
options:
|
|
max-file: "2"
|
|
max-size: "500k"
|
|
environment:
|
|
- SERVERADMINMAIL=webmaster@example.com
|
|
volumes:
|
|
- ./aap-webroot:/var/www/localhost
|
|
|