Add Linktree

This commit is contained in:
Tobias Manske 2023-03-23 08:04:37 +01:00
parent a5d0e0690e
commit 676187d655
Signed by: tobias
GPG Key ID: E83C743C1FC2F79A
3 changed files with 21 additions and 0 deletions

View File

@ -117,6 +117,7 @@
- { role: compose_project, service: search }
- { role: compose_project, service: syncthing }
- { role: compose_project, service: blog }
- { role: compose_project, service: linktree }
- { role: compose_project, service: caddy }
- { role: compose_project, service: diun }
- { role: compose_project, service: watchtower }

View File

@ -0,0 +1 @@
COMPOSE_PROJECT_NAME=linktree

View File

@ -0,0 +1,19 @@
---
version: "3.4"
services:
unruhig.eu:
image: registry.tobiasmanske.de/unruhig.eu:latest
labels:
- "traefik.enable=true"
- "traefik.http.routers.unruhigeu.rule=(Host(`unruhig.eu`) || Host(`www.unruhig.eu`))"
- "traefik.http.routers.unruhigeu.entryPoints=websecure"
- "traefik.http.services.unruhigeu.loadbalancer.server.port=80"
restart: always
networks:
- gateway
networks:
gateway:
external: true
...