17 lines
361 B
YAML
17 lines
361 B
YAML
services:
|
|
portainer:
|
|
container_name: portainer
|
|
image: portainer/portainer-ce:lts
|
|
restart: always
|
|
extra_hosts:
|
|
- "id.khongisa.co.za:192.168.1.171"
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- portainer_data:/data
|
|
ports:
|
|
- 9443:9443
|
|
- 8000:8000
|
|
|
|
volumes:
|
|
portainer_data:
|
|
name: portainer_data |