homelab/bxl/other.docker-compose.yaml

81 lines
2.2 KiB
YAML
Raw Normal View History

2023-01-02 21:09:42 +01:00
version: "3.7"
services:
wireguard:
container_name: wireguard
image: lscr.io/linuxserver/wireguard:latest
volumes:
- /mnt/Main/containers/wireguard/config:/config
- /lib/modules:/lib/modules
ports:
- 51820:51820/udp
environment:
- TZ=Europe/Paris
- SERVERURL=vpn.bhasher.com
- SERVERPORT=51820
- PEERS=5
- PEERDNS=auto
- INTERNAL_SUBNET=10.13.13.0
- ALLOWEDIPS=0.0.0.0/0
cap_add:
- NET_ADMIN
- SYS_MODULE
sysctls:
- net.ipv4.conf.all.src_valid_mark=1
restart: always
syncthing:
container_name: syncthing
image: syncthing/syncthing:latest
hostname: TrueNAS
environment:
- PUID=33
- PGID=33
volumes:
- /mnt/Main/containers/syncthing:/var/syncthing:rw
- /mnt/Main/redondant/brieuc/SyncDocuments:/mnt/SyncDocuments:rw
- /mnt/Main/redondant/brieuc/Pictures:/mnt/pictures:rw
labels:
- "traefik.enable=true"
- "traefik.http.routers.syncthing.rule=Host(`syncthing.bhasher.com`)"
- "traefik.http.routers.syncthing.entrypoints=internalsecure"
- "traefik.http.services.syncthing.loadbalancer.server.port=8384"
- "traefik.http.routers.syncthing.tls=true"
- "traefik.http.routers.syncthing.tls.certresolver=http"
ports:
- 22000:22000/tcp # TCP file transfers
- 22000:22000/udp # QUIC file transfers
- 21027:21027/udp # Receive local discovery broadcasts
restart: unless-stopped
networks:
- external
2023-01-02 23:40:52 +01:00
dashy:
container_name: dashy
image: lissy93/dashy:latest
volumes:
- /mnt/Main/containers/dashy/config.yml:/app/public/conf.yml
environment:
- NODE_ENV=production
- UID=1000
- GID=1000
restart: unless-stopped
healthcheck:
test: ['CMD', 'node', '/app/services/healthcheck']
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
labels:
- "traefik.enable=true"
- "traefik.http.routers.dashy.rule=Host(`dashboard.bhasher.com`)"
- "traefik.http.routers.dashy.entrypoints=internalsecure"
- "traefik.http.services.dashy.loadbalancer.server.port=80"
- "traefik.http.routers.dashy.tls=true"
- "traefik.http.routers.dashy.tls.certresolver=http"
networks:
- external
2023-01-02 21:09:42 +01:00
networks:
external:
external: true