Add 2 instances of affichtoo
This commit is contained in:
parent
e946a3f962
commit
c856574cf9
53
homelab.org
53
homelab.org
@ -402,6 +402,9 @@ services:
|
||||
- "traefik.http.routers.valetudo.tls=true"
|
||||
- "traefik.http.routers.valetudo.middlewares=authelia@docker"
|
||||
- "traefik.http.routers.valetudo.service=valetudo@file"
|
||||
# Basic Auth
|
||||
- "traefik.http.middlewares.wasabi-auth.basicauth.users=wasabi:$$2y$$05$$GWMXPYbVPtIbnKR8nJBUseTfuLn4vgMzMXtIqs.3.0Je9eUGbRiwG"
|
||||
- "traefik.http.middlewares.potaupho-auth.basicauth.users=potaupho:$$2y$$05$$0.hcoM36J1bhooHg6w/PBeP.HyxUpZwU7eFurq5RCrpaYNMVq1f4y"
|
||||
logging: *default-logging
|
||||
#+end_src
|
||||
|
||||
@ -1011,6 +1014,56 @@ http {
|
||||
#+end_src
|
||||
|
||||
** Websites
|
||||
*** =wasabi= - Affichtoo
|
||||
#+begin_src yaml
|
||||
wasabi:
|
||||
container_name: wasabi
|
||||
image: tdehaeze/affichtoo
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- t2_proxy
|
||||
environment:
|
||||
- UID=$PUID
|
||||
- GID=$PGID
|
||||
- TZ=$TZ
|
||||
volumes:
|
||||
- $CONFIGDIR/wasabi/config:/app/config
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
- "traefik.http.routers.wasabi-rtr.entrypoints=https"
|
||||
- "traefik.http.routers.wasabi-rtr.rule=Host(`wasabi.$DOMAINNAME`)"
|
||||
- "traefik.http.routers.wasabi-rtr.tls=true"
|
||||
- "traefik.http.routers.wasabi-rtr.service=wasabi-svc"
|
||||
- "traefik.http.services.wasabi-svc.loadbalancer.server.port=8000"
|
||||
- "traefik.http.routers.wasabi-rtr.middlewares=wasabi-auth"
|
||||
logging: *default-logging
|
||||
#+end_src
|
||||
|
||||
*** =potaupho= - Affichtoo
|
||||
#+begin_src yaml
|
||||
potaupho:
|
||||
container_name: potaupho
|
||||
image: tdehaeze/affichtoo
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- t2_proxy
|
||||
environment:
|
||||
- UID=$PUID
|
||||
- GID=$PGID
|
||||
- TZ=$TZ
|
||||
volumes:
|
||||
- $CONFIGDIR/potaupho/config:/app/config
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
- "traefik.http.routers.potaupho-rtr.entrypoints=https"
|
||||
- "traefik.http.routers.potaupho-rtr.rule=Host(`potaupho.$DOMAINNAME`)"
|
||||
- "traefik.http.routers.potaupho-rtr.tls=true"
|
||||
- "traefik.http.routers.potaupho-rtr.service=potaupho-svc"
|
||||
- "traefik.http.services.potaupho-svc.loadbalancer.server.port=8000"
|
||||
- "traefik.http.routers.potaupho-rtr.middlewares=potaupho-auth"
|
||||
logging: *default-logging
|
||||
#+end_src
|
||||
|
||||
*** =homer= - Home page ([[https://github.com/bastienwirtz/homer][link]])
|
||||
#+begin_src yaml
|
||||
homer:
|
||||
|
Loading…
Reference in New Issue
Block a user