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