mirror of
https://github.com/fosrl/pangolin.git
synced 2025-05-12 21:30:35 +01:00

* add example config dir, logos, and update CONTRIBUTING.md * update dockerignore * split base_url into dashboard_url and base_domain * Remove unessicary ports * Allow anything for the ip * Update docker tags * Complex regex for domains/ips * update gitignore --------- Co-authored-by: Owen Schwartz <owen@txv.io>
51 lines
1.5 KiB
YAML
51 lines
1.5 KiB
YAML
version: "3.7"
|
|
|
|
services:
|
|
pangolin:
|
|
image: fosrl/pangolin:latest
|
|
container_name: pangolin
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./config:/app/config
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:3001/api/v1/"]
|
|
interval: "3s"
|
|
timeout: "3s"
|
|
retries: 5
|
|
|
|
gerbil:
|
|
image: fosrl/gerbil:latest
|
|
container_name: gerbil
|
|
restart: unless-stopped
|
|
depends_on:
|
|
pangolin:
|
|
condition: service_healthy
|
|
command:
|
|
- --reachableAt=http://gerbil:3003
|
|
- --generateAndSaveKeyTo=/var/config/key
|
|
- --remoteConfig=http://pangolin:3001/api/v1/gerbil/get-config
|
|
- --reportBandwidthTo=http://pangolin:3001/api/v1/gerbil/receive-bandwidth
|
|
volumes:
|
|
- ./config/:/var/config
|
|
cap_add:
|
|
- NET_ADMIN
|
|
- SYS_MODULE
|
|
ports:
|
|
- 51820:51820/udp
|
|
- 8080:8080 # Port for traefik because of the network_mode
|
|
- 443:443 # Port for traefik because of the network_mode
|
|
- 80:80 # Port for traefik because of the network_mode
|
|
|
|
traefik:
|
|
image: traefik:v3.1
|
|
container_name: traefik
|
|
restart: unless-stopped
|
|
network_mode: service:gerbil # Ports appear on the gerbil service
|
|
depends_on:
|
|
pangolin:
|
|
condition: service_healthy
|
|
command:
|
|
- --configFile=/etc/traefik/traefik_config.yml
|
|
volumes:
|
|
- ./traefik:/etc/traefik:ro # Volume to store the Traefik configuration
|
|
- ./letsencrypt:/letsencrypt # Volume to store the Let's Encrypt certificates
|