Improve compose.yml: volume, tag, MUXRPC

This commit is contained in:
3wc 2021-06-01 22:55:19 +02:00
parent 54de5ba0c2
commit 464ddde48d
1 changed files with 9 additions and 1 deletions

View File

@ -3,11 +3,13 @@ version: "3.8"
services: services:
app: app:
image: 3wordchant/go-ssb-room image: 3wordchant/go-ssb-room:2.0.3
networks: networks:
- proxy - proxy
environment: environment:
- DOMAIN - DOMAIN
volumes:
- "data:/app/data"
deploy: deploy:
restart_policy: restart_policy:
condition: on-failure condition: on-failure
@ -17,7 +19,13 @@ services:
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`${EXTRA_DOMAINS})" - "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`${EXTRA_DOMAINS})"
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure" - "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}" - "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
- "traefik.tcp.routers.${STACK_NAME}-muxrpc.rule=HostSNI(`*`)"
- "traefik.tcp.routers.${STACK_NAME}-muxrpc.entrypoints=ssb-muxrpc"
- "traefik.tcp.services.${STACK_NAME}-muxrpc.loadbalancer.server.port=8008"
networks: networks:
proxy: proxy:
external: true external: true
volumes:
data: