mirror of
https://github.com/fosrl/pangolin.git
synced 2026-05-31 12:39:51 +00:00
130 lines
3.1 KiB
YAML
130 lines
3.1 KiB
YAML
name: pangolin
|
|
services:
|
|
pangolin:
|
|
image: docker.io/fosrl/pangolin:{{if .IsEnterprise}}ee-{{end}}{{if .IsPostgreSQL}}postgresql-{{end}}{{.PangolinVersion}}
|
|
container_name: pangolin
|
|
restart: unless-stopped
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 1g
|
|
reservations:
|
|
memory: 256m
|
|
{{if or .IsPostgreSQL .IsRedis}}
|
|
depends_on:
|
|
{{if .IsPostgreSQL}}
|
|
postgres:
|
|
condition: service_healthy
|
|
{{end}}
|
|
{{if .IsRedis}}
|
|
redis:
|
|
condition: service_healthy
|
|
{{end}}
|
|
networks:
|
|
- default
|
|
- backend
|
|
{{end}}
|
|
volumes:
|
|
- ./config:/app/config
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:3001/api/v1/"]
|
|
interval: "10s"
|
|
timeout: "10s"
|
|
retries: 15
|
|
{{if .InstallGerbil}}
|
|
gerbil:
|
|
image: docker.io/fosrl/gerbil:{{.GerbilVersion}}
|
|
container_name: gerbil
|
|
restart: unless-stopped
|
|
depends_on:
|
|
pangolin:
|
|
condition: service_healthy
|
|
command:
|
|
- --reachableAt=http://gerbil:3004
|
|
- --generateAndSaveKeyTo=/var/config/key
|
|
- --remoteConfig=http://pangolin:3001/api/v1/
|
|
volumes:
|
|
- ./config/:/var/config
|
|
cap_add:
|
|
- NET_ADMIN
|
|
- SYS_MODULE
|
|
ports:
|
|
- 51820:51820/udp
|
|
- 21820:21820/udp
|
|
- 443:443
|
|
- 443:443/udp # For http3 QUIC if desired
|
|
- 80:80
|
|
{{end}}
|
|
traefik:
|
|
image: docker.io/traefik:v3.6
|
|
container_name: traefik
|
|
restart: unless-stopped
|
|
{{if .InstallGerbil}} network_mode: service:gerbil # Ports appear on the gerbil service{{end}}{{if not .InstallGerbil}}
|
|
ports:
|
|
- 443:443
|
|
- 80:80
|
|
{{end}}
|
|
depends_on:
|
|
pangolin:
|
|
condition: service_healthy
|
|
command:
|
|
- --configFile=/etc/traefik/traefik_config.yml
|
|
volumes:
|
|
- ./config/traefik:/etc/traefik:ro # Volume to store the Traefik configuration
|
|
- ./config/letsencrypt:/letsencrypt # Volume to store the Let's Encrypt certificates
|
|
- ./config/traefik/logs:/var/log/traefik # Volume to store Traefik logs
|
|
|
|
{{if .IsPostgreSQL}}
|
|
postgres:
|
|
image: postgres:18
|
|
container_name: postgres
|
|
restart: unless-stopped
|
|
environment:
|
|
POSTGRES_USER: pangolin
|
|
POSTGRES_PASSWORD: {{.IsPostgreSQLPass}}
|
|
POSTGRES_DB: pangolin
|
|
volumes:
|
|
- ./postgres18:/var/lib/postgresql
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U pangolin"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
networks:
|
|
- backend
|
|
{{end}}
|
|
|
|
{{if .IsRedis}}
|
|
redis:
|
|
image: redis:8-trixie
|
|
container_name: redis
|
|
restart: unless-stopped
|
|
command: >
|
|
redis-server
|
|
--save 3600 1000
|
|
--appendonly yes
|
|
--requirepass {{.IsRedisPass}}
|
|
volumes:
|
|
- ./redis8:/data
|
|
healthcheck:
|
|
test: ["CMD", "redis-cli", "-a", "{{.IsRedisPass}}", "ping"]
|
|
interval: 10s
|
|
timeout: 3s
|
|
retries: 3
|
|
start_period: 10s
|
|
networks:
|
|
- backend
|
|
{{end}}
|
|
|
|
networks:
|
|
default:
|
|
driver: bridge
|
|
name: pangolin_frontend
|
|
{{if .EnableIPv6}} enable_ipv6: true{{end}}
|
|
{{if or .IsPostgreSQL .IsRedis}}
|
|
backend:
|
|
driver: bridge
|
|
name: pangolin_backend
|
|
internal: true
|
|
{{end}}
|