apix/docker-compose.nas.yml

18 lines
468 B
YAML

version: '3.8'
services:
app:
image: git.khoavo.myds.me/vndangkhoa/apix:v2
container_name: apix_container
ports:
- "8558:8888"
volumes:
- ./static/generated:/app/static/generated
- ./static/uploads:/app/static/uploads
- ./config:/app/config
environment:
- CONFIG_DIR=/app/config
- GOOGLE_API_KEY=${GOOGLE_API_KEY:-}
- WHISK_COOKIES=${WHISK_COOKIES:-}
restart: unless-stopped
pull_policy: always