From 7c6a3c813562ecae2e5704e1f26f19383d9a8b85 Mon Sep 17 00:00:00 2001 From: Vladimir Mikhalev <10498744+heyvaldemar@users.noreply.github.com> Date: Fri, 7 Feb 2025 11:10:39 -0500 Subject: [PATCH] Ollama with Let's Encrypt Using Docker Compose --- ollama-traefik-letsencrypt-docker-compose.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ollama-traefik-letsencrypt-docker-compose.yml b/ollama-traefik-letsencrypt-docker-compose.yml index 305d102..6adaccb 100644 --- a/ollama-traefik-letsencrypt-docker-compose.yml +++ b/ollama-traefik-letsencrypt-docker-compose.yml @@ -105,7 +105,7 @@ services: command: # Set the log level (DEBUG, INFO, WARN, ERROR) - "--log.level=${TRAEFIK_LOG_LEVEL}" - # Enable the built-in API and web-based dashboard on /dashboard + # Enable the built-in API and web-based dashboard - "--api.dashboard=true" # Enable the /ping endpoint so we can health-check Traefik - "--ping=true" @@ -155,7 +155,7 @@ services: retries: 3 start_period: 5s labels: - # Enable Traefik for this container. + # Enable Traefik for this container - "traefik.enable=true" # A router to expose the Traefik dashboard - "traefik.http.routers.dashboard.rule=Host(`${TRAEFIK_HOSTNAME}`)" @@ -163,7 +163,7 @@ services: - "traefik.http.routers.dashboard.tls=true" - "traefik.http.routers.dashboard.tls.certresolver=letsencrypt" - "traefik.http.routers.dashboard.service=api@internal" - # asic Authentication for the Traefik dashboard + # Basic Authentication for the Traefik dashboard - "traefik.http.routers.dashboard.middlewares=authtraefik" - "traefik.http.middlewares.authtraefik.basicauth.users=${TRAEFIK_BASIC_AUTH}" # Specify the internal server port to the dashboard service