| 
									
										
										
										
											2023-02-21 18:29:59 +00:00
										 |  |  | version: "3"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | services:
 | 
					
						
							|  |  |  |   flatnotes:
 | 
					
						
							|  |  |  |     container_name: flatnotes
 | 
					
						
							| 
									
										
										
										
											2023-12-07 09:07:28 +00:00
										 |  |  |     image: dullage/flatnotes:v3.6.1
 | 
					
						
							| 
									
										
										
										
											2023-02-21 18:29:59 +00:00
										 |  |  |     environment:
 | 
					
						
							|  |  |  |       FLATNOTES_AUTH_TYPE: ${FLATNOTES_AUTH_TYPE}
 | 
					
						
							|  |  |  |       FLATNOTES_USERNAME: ${FLATNOTES_USERNAME}
 | 
					
						
							|  |  |  |       FLATNOTES_PASSWORD: ${FLATNOTES_PASSWORD}
 | 
					
						
							|  |  |  |       FLATNOTES_SECRET_KEY: ${FLATNOTES_SECRET_KEY}
 | 
					
						
							|  |  |  |       FLATNOTES_TOTP_KEY: ${FLATNOTES_TOTP_KEY}
 | 
					
						
							|  |  |  |     volumes:
 | 
					
						
							| 
									
										
										
										
											2023-05-05 18:34:35 +00:00
										 |  |  |       - "${APP_DATA_DIR}/data:/data"
 | 
					
						
							| 
									
										
										
										
											2023-02-21 18:29:59 +00:00
										 |  |  |       # - "./index:/app/data/.flatnotes"
 | 
					
						
							| 
									
										
										
										
											2023-06-10 14:46:05 +00:00
										 |  |  |       # Optional. Allows you to save the search index in a different location.
 | 
					
						
							| 
									
										
										
										
											2023-02-21 18:29:59 +00:00
										 |  |  |     ports:
 | 
					
						
							| 
									
										
										
										
											2023-05-05 18:34:35 +00:00
										 |  |  |       - ${APP_PORT}:8080
 | 
					
						
							| 
									
										
										
										
											2023-02-21 18:29:59 +00:00
										 |  |  |     restart: unless-stopped
 | 
					
						
							|  |  |  |     networks:
 | 
					
						
							|  |  |  |       - tipi_main_network
 | 
					
						
							|  |  |  |     labels:
 | 
					
						
							| 
									
										
										
										
											2023-06-10 14:46:05 +00:00
										 |  |  |       # Main
 | 
					
						
							|  |  |  |       traefik.enable: true
 | 
					
						
							|  |  |  |       traefik.http.middlewares.flatnotes-web-redirect.redirectscheme.scheme: https
 | 
					
						
							|  |  |  |       traefik.http.services.flatnotes.loadbalancer.server.port: 8080
 | 
					
						
							|  |  |  |       # Web
 | 
					
						
							|  |  |  |       traefik.http.routers.flatnotes-insecure.rule: Host(`${APP_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.flatnotes-insecure.entrypoints: web
 | 
					
						
							|  |  |  |       traefik.http.routers.flatnotes-insecure.service: flatnotes
 | 
					
						
							|  |  |  |       traefik.http.routers.flatnotes-insecure.middlewares: flatnotes-web-redirect
 | 
					
						
							|  |  |  |       # Websecure
 | 
					
						
							| 
									
										
										
										
											2023-02-21 18:29:59 +00:00
										 |  |  |       traefik.http.routers.flatnotes.rule: Host(`${APP_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.flatnotes.entrypoints: websecure
 | 
					
						
							|  |  |  |       traefik.http.routers.flatnotes.service: flatnotes
 | 
					
						
							|  |  |  |       traefik.http.routers.flatnotes.tls.certresolver: myresolver
 | 
					
						
							| 
									
										
										
										
											2023-06-10 14:46:05 +00:00
										 |  |  |       # Local domain
 | 
					
						
							|  |  |  |       traefik.http.routers.flatnotes-local-insecure.rule: Host(`flatnotes.${LOCAL_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.flatnotes-local-insecure.entrypoints: web
 | 
					
						
							|  |  |  |       traefik.http.routers.flatnotes-local-insecure.service: flatnotes
 | 
					
						
							|  |  |  |       traefik.http.routers.flatnotes-local-insecure.middlewares: flatnotes-web-redirect
 | 
					
						
							|  |  |  |       # Local domain secure
 | 
					
						
							|  |  |  |       traefik.http.routers.flatnotes-local.rule: Host(`flatnotes.${LOCAL_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.flatnotes-local.entrypoints: websecure
 | 
					
						
							|  |  |  |       traefik.http.routers.flatnotes-local.service: flatnotes
 | 
					
						
							|  |  |  |       traefik.http.routers.flatnotes-local.tls: true
 |