The analogGallery repo uses 'main' not 'master' as default branch. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
27 lines
745 B
YAML
27 lines
745 B
YAML
services:
|
|
gallery:
|
|
build:
|
|
context: https://gitea.ghost.tel/knight/analogGallery.git#main
|
|
container_name: analoggallery
|
|
restart: unless-stopped
|
|
labels:
|
|
- "com.ghost.tel/stack-type=public"
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.analoggallery.entrypoints=https"
|
|
- "traefik.http.routers.analoggallery.rule=Host(`analog.uplink.tel`)"
|
|
- "traefik.http.routers.analoggallery.tls.certresolver=http"
|
|
- "traefik.http.services.analoggallery.loadbalancer.server.port=3000"
|
|
environment:
|
|
- NODE_ENV=production
|
|
volumes:
|
|
- ./images:/app/images
|
|
- ./images.json:/app/images.json
|
|
expose:
|
|
- "3000"
|
|
networks:
|
|
- web
|
|
|
|
networks:
|
|
web:
|
|
external: true
|