14 lines
315 B
YAML
14 lines
315 B
YAML
|
version: "3.9"
|
||
|
|
||
|
services:
|
||
|
portainer:
|
||
|
image: portainer/portainer-ce:latest
|
||
|
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
|