18 lines
295 B
YAML
18 lines
295 B
YAML
version: "2.0"
|
|
|
|
services:
|
|
portainer:
|
|
image: portainer/portainer-ce:latest
|
|
restart: always
|
|
ports:
|
|
- "9443:9443"
|
|
- "9000:9000"
|
|
volumes:
|
|
- "/var/run/docker.sock:/var/run/docker.sock"
|
|
- "portainer_data:/data"
|
|
|
|
|
|
volumes:
|
|
portainer_data:
|
|
external: true
|