vaultwarden,traefik: setup ssl

This commit is contained in:
Schneider Roland 2024-10-05 23:13:23 +02:00
parent 1cfbaad8e7
commit 3801fda3f9

View File

@ -3,7 +3,13 @@ services:
# The official v3 Traefik docker image # The official v3 Traefik docker image
image: traefik:v3.1 image: traefik:v3.1
# Enables the web UI and tells Traefik to listen to docker # Enables the web UI and tells Traefik to listen to docker
command: --api.insecure=true --providers.docker --entryPoints.web.address=:80 --entryPoints.websecure.address=:443 command:
- --api.insecure=true
- --providers.docker
- --entryPoints.web.address=:80
- --entryPoints.websecure.address=:443
- --accesslog=true
- --log.level=DEBUG
ports: ports:
# The HTTP port # The HTTP port
- "80:80" - "80:80"