41 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| version: "3.7"
 | |
| 
 | |
| services:
 | |
|   portainer:
 | |
|     image: portainer/portainer-ce:2.19.4-alpine
 | |
|     container_name: portainer
 | |
|     restart: unless-stopped
 | |
|     ports:
 | |
|       - ${APP_PORT}:9443
 | |
|       - 9000:9000
 | |
|     volumes:
 | |
|       - /var/run/docker.sock:/var/run/docker.sock
 | |
|       - "${APP_DATA_DIR}/data:/data"
 | |
|     networks:
 | |
|       - tipi_main_network
 | |
|     labels:
 | |
|       # Main
 | |
|       traefik.enable: true
 | |
|       traefik.http.middlewares.portainer-web-redirect.redirectscheme.scheme: https
 | |
|       traefik.http.services.portainer.loadbalancer.server.port: 9000
 | |
|       # Web
 | |
|       traefik.http.routers.portainer-insecure.rule: Host(`${APP_DOMAIN}`)
 | |
|       traefik.http.routers.portainer-insecure.entrypoints: web
 | |
|       traefik.http.routers.portainer-insecure.service: portainer
 | |
|       traefik.http.routers.portainer-insecure.middlewares: portainer-web-redirect
 | |
|       # Websecure
 | |
|       traefik.http.routers.portainer.rule: Host(`${APP_DOMAIN}`)
 | |
|       traefik.http.routers.portainer.entrypoints: websecure
 | |
|       traefik.http.routers.portainer.service: portainer
 | |
|       traefik.http.routers.portainer.tls.certresolver: myresolver
 | |
|       # Local domain
 | |
|       traefik.http.routers.portainer-local-insecure.rule: Host(`portainer.${LOCAL_DOMAIN}`)
 | |
|       traefik.http.routers.portainer-local-insecure.entrypoints: web
 | |
|       traefik.http.routers.portainer-local-insecure.service: portainer
 | |
|       traefik.http.routers.portainer-local-insecure.middlewares: portainer-web-redirect
 | |
|       # Local domain secure
 | |
|       traefik.http.routers.portainer-local.rule: Host(`portainer.${LOCAL_DOMAIN}`)
 | |
|       traefik.http.routers.portainer-local.entrypoints: websecure
 | |
|       traefik.http.routers.portainer-local.service: portainer
 | |
|       traefik.http.routers.portainer-local.tls: true
 | 
![renovate[bot]](/assets/img/avatar_default.png)