2023-06-10 14:46:05 +00:00
|
|
|
version: "3"
|
2023-02-28 22:09:13 +00:00
|
|
|
|
|
|
|
services:
|
|
|
|
dokuwiki:
|
|
|
|
container_name: dokuwiki
|
|
|
|
image: lscr.io/linuxserver/dokuwiki:2022-07-31a-ls158
|
|
|
|
ports:
|
|
|
|
- ${APP_PORT}:80
|
|
|
|
volumes:
|
|
|
|
- ${APP_DATA_DIR}/data/config:/config
|
|
|
|
environment:
|
|
|
|
- TZ=${TZ}
|
|
|
|
networks:
|
|
|
|
- tipi_main_network
|
|
|
|
labels:
|
2023-06-10 14:46:05 +00:00
|
|
|
# Main
|
|
|
|
traefik.enable: true
|
|
|
|
traefik.http.middlewares.dokuwiki-web-redirect.redirectscheme.scheme: https
|
|
|
|
traefik.http.services.dokuwiki.loadbalancer.server.port: 80
|
|
|
|
# Web
|
|
|
|
traefik.http.routers.dokuwiki-insecure.rule: Host(`${APP_DOMAIN}`)
|
|
|
|
traefik.http.routers.dokuwiki-insecure.entrypoints: web
|
|
|
|
traefik.http.routers.dokuwiki-insecure.service: dokuwiki
|
|
|
|
traefik.http.routers.dokuwiki-insecure.middlewares: dokuwiki-web-redirect
|
|
|
|
# Websecure
|
2023-02-28 22:09:13 +00:00
|
|
|
traefik.http.routers.dokuwiki.rule: Host(`${APP_DOMAIN}`)
|
|
|
|
traefik.http.routers.dokuwiki.entrypoints: websecure
|
|
|
|
traefik.http.routers.dokuwiki.service: dokuwiki
|
|
|
|
traefik.http.routers.dokuwiki.tls.certresolver: myresolver
|
2023-06-10 14:46:05 +00:00
|
|
|
# Local domain
|
|
|
|
traefik.http.routers.dokuwiki-local-insecure.rule: Host(`dokuwiki.${LOCAL_DOMAIN}`)
|
|
|
|
traefik.http.routers.dokuwiki-local-insecure.entrypoints: web
|
|
|
|
traefik.http.routers.dokuwiki-local-insecure.service: dokuwiki
|
|
|
|
traefik.http.routers.dokuwiki-local-insecure.middlewares: dokuwiki-web-redirect
|
|
|
|
# Local domain secure
|
|
|
|
traefik.http.routers.dokuwiki-local.rule: Host(`dokuwiki.${LOCAL_DOMAIN}`)
|
|
|
|
traefik.http.routers.dokuwiki-local.entrypoints: websecure
|
|
|
|
traefik.http.routers.dokuwiki-local.service: dokuwiki
|
|
|
|
traefik.http.routers.dokuwiki-local.tls: true
|