feat(evershelf): add evershelf service configuration with Traefik labels
All checks were successful
Auto-Deploy Changed Stacks / deploy (push) Successful in 14s
All checks were successful
Auto-Deploy Changed Stacks / deploy (push) Successful in 14s
This commit is contained in:
parent
40a7fbe45d
commit
89cc7548c9
28
nodes/heimdall/evershelf/compose.yaml
Normal file
28
nodes/heimdall/evershelf/compose.yaml
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
services:
|
||||||
|
evershelf:
|
||||||
|
build: .
|
||||||
|
container_name: evershelf
|
||||||
|
ports:
|
||||||
|
- "8080:80"
|
||||||
|
networks:
|
||||||
|
- proxy-net
|
||||||
|
labels:
|
||||||
|
- "traefik.enable=true"
|
||||||
|
- "traefik.http.routers.evershelf.entrypoints=websecure"
|
||||||
|
- "traefik.http.routers.evershelf.rule=Host(`evershelf.castaldifamily.com`)"
|
||||||
|
- "traefik.http.routers.evershelf.tls=true"
|
||||||
|
- "traefik.http.routers.evershelf.tls.certresolver=cloudflare"
|
||||||
|
- "traefik.http.services.evershelf.loadbalancer.server.port=8080"
|
||||||
|
volumes:
|
||||||
|
# Persist database and runtime data
|
||||||
|
- /mnt/appdata/evershelf/data:/var/www/html/data
|
||||||
|
# Mount your local .env configuration
|
||||||
|
- /mnt/appdata/evershelf/.env:/var/www/html/.env:ro
|
||||||
|
restart: unless-stopped
|
||||||
|
environment:
|
||||||
|
- TZ=America/New_York
|
||||||
|
|
||||||
|
networks:
|
||||||
|
proxy-net:
|
||||||
|
name: proxy-net
|
||||||
|
external: true
|
||||||
Loading…
x
Reference in New Issue
Block a user