![renovate[bot]](/assets/img/avatar_default.png) 16bee3aa33
			
		
	
	
		16bee3aa33
		
			
		
	
	
	
	
		
			
			* chore(deps): update mrcas/mind docker tag to v1.3.1 * Update app version --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: github-action update-app-version <githubaction@githubaction.com>
		
			
				
	
	
		
			22 lines
		
	
	
		
			591 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			591 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| version: '3.3'
 | |
| 
 | |
| services:
 | |
|   mind:
 | |
|     container_name: mind
 | |
|     image: mrcas/mind:v1.3.1
 | |
|     volumes:
 | |
|       - ${APP_DATA_DIR}/data/mind-db:/app/db
 | |
|     environment:
 | |
|       - TZ=${TZ}
 | |
|     ports:
 | |
|       - ${APP_PORT}:8080
 | |
|     networks:
 | |
|       - tipi_main_network
 | |
|     labels:
 | |
|       traefik.enable: ${APP_EXPOSED}
 | |
|       traefik.http.routers.mind.rule: Host(`${APP_DOMAIN}`)
 | |
|       traefik.http.routers.mind.entrypoints: websecure
 | |
|       traefik.http.routers.mind.service: mind
 | |
|       traefik.http.routers.mind.tls.certresolver: myresolver
 | |
|       traefik.http.services.mind.loadbalancer.server.port: 8080
 |