inital config for proxitok.tams.tech

This commit is contained in:
D. Scott Boggs 2023-09-01 08:26:18 -04:00
parent 19a2066fc2
commit 9012ea5977

View file

@ -4,8 +4,8 @@ services:
web:
container_name: proxitok-web
image: ghcr.io/pablouser1/proxitok:master
ports:
- 8080:80
# ports:
# - 8080:80
environment:
- LATTE_CACHE=/cache
- API_CACHE=redis
@ -13,6 +13,7 @@ services:
- REDIS_PORT=6379
- API_SIGNER=remote
- API_SIGNER_URL=http://proxitok-signer:8080/signature
- APP_URL=https://proxitok.tams.tech
volumes:
- proxitok-cache:/cache
depends_on:
@ -20,6 +21,7 @@ services:
- signer
networks:
- proxitok
- web
security_opt:
- no-new-privileges:true
cap_drop:
@ -28,6 +30,20 @@ services:
- CHOWN
- SETGID
- SETUID
labels:
# Traefik
traefik.docker.network: web
traefik.domain: tams.tech
traefik.enable: "true"
# Traefik v1
traefik.frontend.rule: Host:proxitok.tams.tech
# DNS discovery (not used)
tech.tams.dns_hosts: proxitok.tams.tech
# Traefik V2
traefik.http.routers.proxitok.rule: Host(`proxitok.tams.tech`)
traefik.http.routers.proxitok.tls: true
traefik.http.routers.proxitok.tls.certresolver: letsencrypt
redis:
container_name: proxitok-redis
@ -62,3 +78,6 @@ volumes:
networks:
proxitok:
internal: true
web:
external: true