17 lines
295 B
YAML
17 lines
295 B
YAML
version: "3"
|
|
|
|
services:
|
|
portainer:
|
|
container_name: portainer
|
|
image: portainer/portainer-ce:latest
|
|
ports:
|
|
- 8000:8000
|
|
- 2443:9443
|
|
volumes:
|
|
- portainer_data:/data
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
restart: always
|
|
|
|
volumes:
|
|
portainer_data:
|