Small text-based online game — a HAL mesh module
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

20 satır
521B

  1. services:
  2. txt-game:
  3. build: .
  4. restart: unless-stopped
  5. environment:
  6. - DOMAIN=${DOMAIN:-localhost}
  7. labels:
  8. - "traefik.enable=true"
  9. - "traefik.http.routers.txt-game.rule=Host(`txt.${DOMAIN:-localhost}`)"
  10. - "traefik.http.routers.txt-game.entrypoints=websecure"
  11. - "traefik.http.routers.txt-game.tls.certresolver=letsencrypt"
  12. - "traefik.http.services.txt-game.loadbalancer.server.port=3000"
  13. networks:
  14. - proxy
  15. - default
  16. networks:
  17. proxy:
  18. external: true