| 
									
										
										
										
											2023-08-09 22:21:28 +00:00
										 |  |  | version: "3.8"
 | 
					
						
							| 
									
										
										
										
											2023-04-17 21:41:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | services:
 | 
					
						
							|  |  |  |   hammond:
 | 
					
						
							|  |  |  |     container_name: hammond
 | 
					
						
							| 
									
										
										
										
											2024-01-12 13:30:32 +00:00
										 |  |  |     image: alfhou/hammond:v0.0.24
 | 
					
						
							| 
									
										
										
										
											2023-04-17 21:41:51 +00:00
										 |  |  |     ports:
 | 
					
						
							|  |  |  |       - ${APP_PORT}:3000
 | 
					
						
							|  |  |  |     volumes:
 | 
					
						
							|  |  |  |       - ${APP_DATA_DIR}/data/config:/config
 | 
					
						
							|  |  |  |       - ${APP_DATA_DIR}/data/assets:/assets
 | 
					
						
							| 
									
										
										
										
											2023-08-09 22:21:28 +00:00
										 |  |  |       - /etc/timezone:/etc/timezone
 | 
					
						
							|  |  |  |       - /etc/localtime:/etc/localtime
 | 
					
						
							|  |  |  |     environment:
 | 
					
						
							|  |  |  |       - TZ=${HAMMOND_TZ-Europe/Paris}
 | 
					
						
							| 
									
										
										
										
											2023-04-17 21:41:51 +00:00
										 |  |  |     restart: unless-stopped
 | 
					
						
							|  |  |  |     networks:
 | 
					
						
							|  |  |  |       - tipi_main_network
 | 
					
						
							|  |  |  |     labels:
 | 
					
						
							| 
									
										
										
										
											2023-06-10 15:29:03 +00:00
										 |  |  |       # Main
 | 
					
						
							|  |  |  |       traefik.enable: true
 | 
					
						
							|  |  |  |       traefik.http.middlewares.hammond-web-redirect.redirectscheme.scheme: https
 | 
					
						
							|  |  |  |       traefik.http.services.hammond.loadbalancer.server.port: 3000
 | 
					
						
							|  |  |  |       # Web
 | 
					
						
							|  |  |  |       traefik.http.routers.hammond-insecure.rule: Host(`${APP_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.hammond-insecure.entrypoints: web
 | 
					
						
							|  |  |  |       traefik.http.routers.hammond-insecure.service: hammond
 | 
					
						
							|  |  |  |       traefik.http.routers.hammond-insecure.middlewares: hammond-web-redirect
 | 
					
						
							|  |  |  |       # Websecure
 | 
					
						
							| 
									
										
										
										
											2023-04-17 21:41:51 +00:00
										 |  |  |       traefik.http.routers.hammond.rule: Host(`${APP_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.hammond.entrypoints: websecure
 | 
					
						
							|  |  |  |       traefik.http.routers.hammond.service: hammond
 | 
					
						
							|  |  |  |       traefik.http.routers.hammond.tls.certresolver: myresolver
 | 
					
						
							| 
									
										
										
										
											2023-06-10 15:29:03 +00:00
										 |  |  |       # Local domain
 | 
					
						
							|  |  |  |       traefik.http.routers.hammond-local-insecure.rule: Host(`hammond.${LOCAL_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.hammond-local-insecure.entrypoints: web
 | 
					
						
							|  |  |  |       traefik.http.routers.hammond-local-insecure.service: hammond
 | 
					
						
							|  |  |  |       traefik.http.routers.hammond-local-insecure.middlewares: hammond-web-redirect
 | 
					
						
							|  |  |  |       # Local domain secure
 | 
					
						
							|  |  |  |       traefik.http.routers.hammond-local.rule: Host(`hammond.${LOCAL_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.hammond-local.entrypoints: websecure
 | 
					
						
							|  |  |  |       traefik.http.routers.hammond-local.service: hammond
 | 
					
						
							|  |  |  |       traefik.http.routers.hammond-local.tls: true
 | 
					
						
							| 
									
										
										
										
											2023-08-09 22:21:28 +00:00
										 |  |  |     healthcheck:
 | 
					
						
							|  |  |  |       test: wget --no-verbose --tries=1 --spider http://localhost:3000
 | 
					
						
							|  |  |  |       interval: 10s
 | 
					
						
							|  |  |  |       timeout: 5s
 | 
					
						
							|  |  |  |       retries: 5
 | 
					
						
							|  |  |  |       start_period: 30s
 |