added working deployment with Træfik

This commit is contained in:
Bryan Joshua Pedini 2021-08-13 12:49:02 +02:00
parent 072a70f70b
commit 5b12c94a11
3 changed files with 24 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.env

21
docker-compose.yml Normal file
View File

@ -0,0 +1,21 @@
version: "3"
services:
nyx:
container_name: ${TOTP_CONTAINER_NAME}
image: bryanpedini/go-totp:${TOTP_VERSION}
labels:
- traefik.enable=true
### Section HTTP
- traefik.routers.http-totp_bjphoster_com.entrypoints=http
# redirect to HTTPS only
- traefik.http.routers.http-get_bjphoster_com.middlewares=http-to-https
- traefik.http.routers.http-get_bjphoster_com.rule=Host(`totp.bjphoster.com`)
### Section HTTPS
- traefik.http.routers.https-get_bjphoster_com.entrypoints=https
# configure the exposed service
- traefik.http.routers.https-get_bjphoster_com.rule=Host(`totp.bjphoster.com`)
# of course, enable TLS and it's certificate provider
- traefik.http.routers.https-get_bjphoster_com.tls=true
- traefik.http.routers.https-get_bjphoster_com.tls.certresolver=letsencrypt
restart: unless-stopped

2
env.example Normal file
View File

@ -0,0 +1,2 @@
TOTP_CONTAINER_NAME=totp.bjphoster.com
TOTP_VERSION=latest