16 lines
268 B
YAML
16 lines
268 B
YAML
version: '3.3'
|
|
|
|
services:
|
|
portainer:
|
|
image: portainer/portainer-ce
|
|
ports:
|
|
# - "8000:8000"
|
|
- "9000:9000"
|
|
restart: always
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- portainer_data:/data
|
|
|
|
volumes:
|
|
portainer_data: {}
|