16 lines
398 B
YAML
16 lines
398 B
YAML
|
services:
|
||
|
portainer:
|
||
|
image: portainer/portainer-ce@sha256:3230606275b0a2a109afd59c881e5b187bed6162ea8f1783f77b077fe37f42d7
|
||
|
container_name: portainer
|
||
|
command: -H unix:///var/run/docker.sock
|
||
|
ports:
|
||
|
- "9000:9000"
|
||
|
- "9443:9443"
|
||
|
volumes:
|
||
|
- "/var/run/docker.sock:/var/run/docker.sock"
|
||
|
- "portainer_data:/data"
|
||
|
restart: always
|
||
|
|
||
|
volumes:
|
||
|
portainer_data:
|