![renovate[bot]](/assets/img/avatar_default.png) ebe737c2cd
			
		
	
	
		ebe737c2cd
		
			
		
	
	
	
	
		
			
			* chore(deps): update mauricenino/dashdot docker tag to v5.2.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>
		
			
				
	
	
		
			29 lines
		
	
	
		
			894 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			894 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| version: '3.5'
 | |
| services:
 | |
|   dashdot:
 | |
|     image: mauricenino/dashdot:5.2.1
 | |
|     restart: unless-stopped
 | |
|     container_name: dashdot
 | |
|     privileged: true
 | |
|     ports:
 | |
|       - ${APP_PORT}:3001
 | |
|     volumes:
 | |
|       - /:/mnt/host:ro
 | |
|     environment:
 | |
|       - DASHDOT_SHOW_HOST=false
 | |
|       - DASHDOT_SHOW_DASH_VERSION=true
 | |
|       - DASHDOT_ENABLE_CPU_TEMPS=true
 | |
|       - DASHDOT_USE_IMPERIAL=true
 | |
|       - DASHDOT_ALWAYS_SHOW_PERCENTAGES=true
 | |
|       - DASHDOT_PAGE_TITLE=dashdot
 | |
|       - DASHDOT_ACCEPT_OOKLA_EULA=true
 | |
|     networks:
 | |
|       - tipi_main_network
 | |
|     labels:
 | |
|       traefik.enable: ${APP_EXPOSED}
 | |
|       traefik.http.routers.dashdot.rule: Host(`${APP_DOMAIN}`)
 | |
|       traefik.http.routers.dashdot.entrypoints: websecure
 | |
|       traefik.http.routers.dashdot.service: dashdot
 | |
|       traefik.http.routers.dashdot.tls.certresolver: myresolver
 | |
|       traefik.http.services.dashdot.loadbalancer.server.port: 3001
 |