15 lines
285 B
YAML
15 lines
285 B
YAML
|
services:
|
||
|
portainer:
|
||
|
image: portainer/portainer-ce:latest
|
||
|
container_name: portainer
|
||
|
restart: always
|
||
|
ports:
|
||
|
- "8000:8000"
|
||
|
- "9443:9443"
|
||
|
volumes:
|
||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||
|
- portainer_data:/data
|
||
|
|
||
|
volumes:
|
||
|
portainer_data:
|