14 lines
235 B
YAML
14 lines
235 B
YAML
|
version: '3'
|
||
|
|
||
|
services:
|
||
|
portainer:
|
||
|
image: portainer/portainer-ce
|
||
|
ports:
|
||
|
- 8077:9000
|
||
|
volumes:
|
||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||
|
- portainer_data:/data
|
||
|
restart: always
|
||
|
|
||
|
volumes:
|
||
|
portainer_data:
|