22 lines
496 B
YAML
22 lines
496 B
YAML
name: portainer
|
|
|
|
networks:
|
|
default:
|
|
ipam:
|
|
driver: default
|
|
config:
|
|
- subnet: 172.22.18.0/24
|
|
gateway: 172.22.18.1
|
|
|
|
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
|