18 lines
411 B
YAML
18 lines
411 B
YAML
version: '3.3'
|
|
services:
|
|
portainer-ce:
|
|
ports:
|
|
- '8000:8000'
|
|
- '9443:9443'
|
|
container_name: portainer
|
|
restart: always
|
|
volumes:
|
|
- '/var/run/docker.sock:/var/run/docker.sock'
|
|
- 'portainer_data:/data'
|
|
image: 'portainer/portainer-ce:latest'
|
|
|
|
volumes:
|
|
portainer_data:
|
|
name: "portainer_data"
|
|
external: true
|