13 lines
363 B
YAML
13 lines
363 B
YAML
name: portainer
|
|
services:
|
|
portainer-ce:
|
|
ports:
|
|
- 8000:8000
|
|
- 9443:9443
|
|
container_name: portainer
|
|
restart: unless-stopped
|
|
volumes:
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- ./Data:/data
|
|
image: portainer/portainer-ce:lts
|