| 
									
										
										
										
											2024-01-16 18:32:11 +00:00
										 |  |  | version: "3.7"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | services:
 | 
					
						
							|  |  |  |   wekan:
 | 
					
						
							| 
									
										
										
										
											2024-02-22 20:43:25 +00:00
										 |  |  |     image: ghcr.io/wekan/wekan:v7.32
 | 
					
						
							| 
									
										
										
										
											2024-01-16 18:32:11 +00:00
										 |  |  |     container_name: wekan
 | 
					
						
							|  |  |  |     environment:
 | 
					
						
							|  |  |  |       # https://github.com/wekan/wekan/blob/main/docker-compose.yml
 | 
					
						
							|  |  |  |       - MONGO_URL=mongodb://wekan-db:27017/wekan
 | 
					
						
							|  |  |  |       - ROOT_URL=https://${APP_DOMAIN}
 | 
					
						
							|  |  |  |       # https://github.com/wekan/wekan/wiki/Troubleshooting-Mail
 | 
					
						
							|  |  |  |       - MAIL_URL=smtp://${MAIL_ADDRESS}:${MAIL_PASSWORD}@smtp.gmail.com:587
 | 
					
						
							|  |  |  |       - MAIL_FROM=Wekan Notifications <noreply.wekan@${APP_DOMAIN}>
 | 
					
						
							|  |  |  |     restart: unless-stopped
 | 
					
						
							|  |  |  |     volumes:
 | 
					
						
							|  |  |  |       - /etc/localtime:/etc/localtime:ro
 | 
					
						
							|  |  |  |       - ${APP_DATA_DIR}/data/wekan:/data
 | 
					
						
							|  |  |  |     ports:
 | 
					
						
							|  |  |  |       - ${APP_PORT}:8080
 | 
					
						
							|  |  |  |     depends_on:
 | 
					
						
							|  |  |  |       - wekan-db
 | 
					
						
							|  |  |  |     networks:
 | 
					
						
							|  |  |  |       - tipi_main_network
 | 
					
						
							|  |  |  |       - backend_network
 | 
					
						
							|  |  |  |     labels:
 | 
					
						
							|  |  |  |       # Main
 | 
					
						
							|  |  |  |       traefik.enable: true
 | 
					
						
							|  |  |  |       traefik.http.middlewares.wekan-web-redirect.redirectscheme.scheme: https
 | 
					
						
							|  |  |  |       traefik.http.services.wekan.loadbalancer.server.port: 8080
 | 
					
						
							|  |  |  |       # Web
 | 
					
						
							|  |  |  |       traefik.http.routers.wekan-insecure.rule: Host(`${APP_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.wekan-insecure.entrypoints: web
 | 
					
						
							|  |  |  |       traefik.http.routers.wekan-insecure.service: wekan
 | 
					
						
							|  |  |  |       traefik.http.routers.wekan-insecure.middlewares: wekan-web-redirect
 | 
					
						
							|  |  |  |       # Websecure
 | 
					
						
							|  |  |  |       traefik.http.routers.wekan.rule: Host(`${APP_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.wekan.entrypoints: websecure
 | 
					
						
							|  |  |  |       traefik.http.routers.wekan.service: wekan
 | 
					
						
							|  |  |  |       traefik.http.routers.wekan.tls.certresolver: myresolver
 | 
					
						
							|  |  |  |       # Local domain
 | 
					
						
							|  |  |  |       traefik.http.routers.wekan-local-insecure.rule: Host(`wekan.${LOCAL_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.wekan-local-insecure.entrypoints: web
 | 
					
						
							|  |  |  |       traefik.http.routers.wekan-local-insecure.service: wekan
 | 
					
						
							|  |  |  |       traefik.http.routers.wekan-local-insecure.middlewares: wekan-web-redirect
 | 
					
						
							|  |  |  |       # Local domain secure
 | 
					
						
							|  |  |  |       traefik.http.routers.wekan-local.rule: Host(`wekan.${LOCAL_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.wekan-local.entrypoints: websecure
 | 
					
						
							|  |  |  |       traefik.http.routers.wekan-local.service: wekan
 | 
					
						
							|  |  |  |       traefik.http.routers.wekan-local.tls: true
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   wekan-db:
 | 
					
						
							|  |  |  |     container_name: wekan-db
 | 
					
						
							|  |  |  |     image: mongo:6
 | 
					
						
							|  |  |  |     restart: unless-stopped
 | 
					
						
							|  |  |  |     command: mongod --logpath /dev/null --oplogSize 128 --quiet
 | 
					
						
							|  |  |  |     volumes:
 | 
					
						
							|  |  |  |       - /etc/localtime:/etc/localtime:ro
 | 
					
						
							|  |  |  |       - ${APP_DATA_DIR}/data/mongo:/data/db
 | 
					
						
							|  |  |  |       - ${APP_DATA_DIR}/data/dump:/dump
 | 
					
						
							|  |  |  |     networks:
 | 
					
						
							|  |  |  |       - backend_network
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | networks:
 | 
					
						
							|  |  |  |   backend_network:
 |