14 lines
		
	
	
		
			322 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			322 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| version: "3.7"
 | |
| 
 | |
| services:
 | |
|   portainer:
 | |
|     image: portainer/portainer-ce:2.15.1-alpine
 | |
|     container_name: portainer
 | |
|     restart: unless-stopped
 | |
|     ports:
 | |
|       - "${APP_PORT}:9443"
 | |
|     volumes:
 | |
|       - /var/run/docker.sock:/var/run/docker.sock
 | |
|       - "${APP_DATA_DIR}/data:/data"
 | |
|     networks:
 | |
|       - tipi_main_network | 
