first commit
This commit is contained in:
42
docker-compose.traefik.yml
Normal file
42
docker-compose.traefik.yml
Normal file
@@ -0,0 +1,42 @@
|
||||
---
|
||||
version: "3.4"
|
||||
|
||||
services:
|
||||
app:
|
||||
image: ghcr.io/ericgullickson/motovaultpro:latest
|
||||
build: .
|
||||
restart: unless-stopped
|
||||
# volumes used to keep data persistent
|
||||
volumes:
|
||||
- data:/App/data
|
||||
- keys:/root/.aspnet/DataProtection-Keys
|
||||
# expose port and/or use serving via traefik
|
||||
ports:
|
||||
- 8080:8080
|
||||
env_file:
|
||||
- .env
|
||||
# traefik configurations, including networks can be commented out if not needed
|
||||
networks:
|
||||
- traefik-ingress
|
||||
labels:
|
||||
## Traefik General
|
||||
# We set 'enable by default' to false, so this tells Traefik we want it to connect here
|
||||
traefik.enable: true
|
||||
# define network for traefik<>app communication
|
||||
traefik.docker.network: traefik-ingress
|
||||
## HTTP Routers
|
||||
traefik.http.routers.whoami.entrypoints: https
|
||||
traefik.http.routers.whoami.rule: Host(`motovaultpro.mydomain.tld`)
|
||||
## Middlewares
|
||||
#traefik.http.routers.whoami.middlewares: authentik@docker
|
||||
# none
|
||||
## HTTP Services
|
||||
traefik.http.services.whoami.loadbalancer.server.port: 5000
|
||||
|
||||
volumes:
|
||||
data:
|
||||
keys:
|
||||
|
||||
networks:
|
||||
traefik-ingress:
|
||||
external: true
|
||||
Reference in New Issue
Block a user