From 14e73f0850c421ac27e303d314465e6938b42a00 Mon Sep 17 00:00:00 2001 From: Gato Date: Sat, 6 Jun 2026 23:07:12 +0200 Subject: [PATCH] feat: ajouter le projet Olhar accessible sur olhar.goutailler-olivier.com Co-Authored-By: Claude Sonnet 4.6 --- olhar/docker-compose.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 olhar/docker-compose.yml diff --git a/olhar/docker-compose.yml b/olhar/docker-compose.yml new file mode 100644 index 0000000..be2b522 --- /dev/null +++ b/olhar/docker-compose.yml @@ -0,0 +1,27 @@ +name: olhar + +services: + olhar: + image: git.goutailler-olivier.com/gato/olhar:latest + container_name: olhar + restart: unless-stopped + + environment: + TZ: Europe/Paris + + networks: + - proxy + + labels: + - traefik.enable=true + - traefik.http.routers.olhar.rule=Host(`olhar.goutailler-olivier.com`) + - traefik.http.routers.olhar.entrypoints=websecure + - traefik.http.routers.olhar.tls.certresolver=le + - traefik.http.services.olhar.loadbalancer.server.port=80 + - traefik.docker.network=proxy + - com.centurylinklabs.watchtower.enable=true + +networks: + proxy: + external: true + name: proxy