* feat(actual-budget): change config to support local domain * feat(adguard): change config to support local domain * feat(autobrr): change config to support local domain * feat(barrage): change config to support local domain * feat(bazarr): change config to support local domain * feat(booksonic): change config to support local domain * feat(bookstack): change config to support local domain * feat(calibre-web): change config to support local domain * feat(chatgpt-ui): change config to support local domain * feat(chatpad): change config to support local domain * feat(code-server): change config to support local domain * feat(codex-docs): change config to support local domain * feat(dailytxt): change config to support local domain * feat(dashdot): change config to support local domain * feat(deemix): change config to support local domain * feat(deluge): change config to support local domain * feat(dokuwiki): change config to support local domain * feat(dozzle): change config to support local domain * feat(duplicati): change config to support local domain * feat(emulatorjs): change config to support local domain * feat(excalidraw): change config to support local domain * feat(filebrowser): change config to support local domain * feat(filestash): change config to support local domain * feat(firefly-iii): change config to support local domain * feat(fireshare): change config to support local domain * feat(flatnotes): change config to support local domain * feat(freshrss): change config to support local domain * feat(ghost): change config to support local domain * feat(gitea): change config to support local domain * feat(gotify): change config to support local domain * feat(gotosocial): change config to support local domain * feat(grafana): change config to support local domain * feat(grav): change config to support local domain * feat(grocy): change config to support local domain
		
			
				
	
	
		
			40 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
version: "3"
 | 
						|
 | 
						|
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:
 | 
						|
      # 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
 | 
						|
      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
 | 
						|
      # 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
 |