rwallet-online/docker-compose.yml

34 lines
768 B
YAML

version: '3.8'
services:
rwallet-online:
build: .
container_name: rwallet-online
restart: unless-stopped
read_only: true
tmpfs:
- /tmp
- /var/cache/nginx
- /var/run
cap_drop:
- ALL
cap_add:
- NET_BIND_SERVICE
- CHOWN
- SETGID
- SETUID
- DAC_OVERRIDE
security_opt:
- no-new-privileges:true
labels:
- "traefik.enable=true"
- "traefik.http.routers.rwallet.rule=Host(`rwallet.online`) || Host(`www.rwallet.online`) || Host(`wallets.bondingcurve.tech`)"
- "traefik.http.routers.rwallet.entrypoints=web"
- "traefik.http.services.rwallet.loadbalancer.server.port=80"
networks:
- traefik-public
networks:
traefik-public:
external: true