From 8b76596a8e436d6dc8d211a98b8c5f4b9ef5d068 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20Gramain?= Date: Sun, 20 Oct 2024 20:52:48 +0200 Subject: [PATCH] add wallabag --- compute-1-mep/wallabag/docker-compose.yaml | 60 ++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 compute-1-mep/wallabag/docker-compose.yaml diff --git a/compute-1-mep/wallabag/docker-compose.yaml b/compute-1-mep/wallabag/docker-compose.yaml new file mode 100644 index 0000000..91b0da1 --- /dev/null +++ b/compute-1-mep/wallabag/docker-compose.yaml @@ -0,0 +1,60 @@ +networks: + default: + enable_ipv6: true + +services: + wallabag: + image: wallabag/wallabag + restart: unless-stopped + environment: + - SYMFONY__ENV__DATABASE_DRIVER=pdo_pgsql + - SYMFONY__ENV__DATABASE_PORT=5432 + - SYMFONY__ENV__DATABASE_TABLE_PREFIX="wallabag_" + - SYMFONY__ENV__FROM_EMAIL=service@gnous.eu + - SYMFONY__ENV__DOMAIN_NAME=https://bag.gnous.eu + - SYMFONY__ENV__SERVER_NAME="GnousBag" + - SYMFONY__ENV__LOCALE="fr" + - SYMFONY__ENV__FOSUSER_REGISTRATION=true + - SYMFONY__ENV__FOSUSER_CONFIRMATION=true + - POPULATE_DATABASE=False + - SYMFONY__ENV__DATABASE_HOST=$(MEP_DB_HOST_IP) + - SYMFONY__ENV__DATABASE_NAME=$(WALLABAG_DB_NAME) + - SYMFONY__ENV__DATABASE_USER=$(WALLABAG_DB_USER) + - SYMFONY__ENV__DATABASE_PASSWORD="$(WALLABAG_DB_PASS)" + - SYMFONY__ENV__MAILER_DSN=smtp://service%40gnous.eu:$(SMTP_PASS)@$(SMTP_HOST) + - SYMFONY__ENV__SECRET=$(WALLABAG_SECRET) + ports: + - "3009:80" + volumes: + - /opt/wallabag/images:/var/www/wallabag/web/assets/images + healthcheck: + test: + [ + "CMD", + "wget", + "--no-verbose", + "--tries=1", + "--spider", + "http://localhost/api/info", + ] + interval: 1m + timeout: 3s + labels: + - "traefik.enable=true" + # web server + - "traefik.http.services.wallabag-service-gnous.loadbalancer.server.port=3009" + - "traefik.http.routers.fwallabaggnous.rule=Host(`bag.gnous.eu`)" + - "traefik.http.routers.forgejofwallabaggnousgnous.tls=true" + - "traefik.http.routers.fwallabaggnous.tls.certresolver=defaultacme" + - "traefik.http.routers.fwallabaggnous.entrypoints=websecure" + - "traefik.http.routers.fwallabaggnous.service=wallabag-service-gnous" + - "traefik.http.routers.fwallabaggnous.middlewares=proxyHeader@file,proxyError@file" + depends_on: + - redis + redis: + image: redis:alpine + restart: unless-stopped + healthcheck: + test: ["CMD", "redis-cli", "ping"] + interval: 20s + timeout: 3s