Files
Art-gallery/infra/docker/compose.prod.yaml
T

20 lines
571 B
YAML

# Manual docker compose on a host with infra/docker/.env.prod present.
# Prefer compose.truenas.yaml for TrueNAS Custom App UI.
services:
web:
build:
context: ../..
dockerfile: infra/docker/Dockerfile
image: gitea.mysuperlab.netcraze.pro/danilka/gallery-web:${IMAGE_TAG:-latest}
container_name: gallery-web
restart: unless-stopped
ports:
- "5173:5173"
env_file:
- .env.prod
volumes:
- /mnt/BasePool/Applications/Gallery/data/images:/app/data/images
extra_hosts:
- "host.docker.internal:host-gateway"