17 lines
384 B
YAML
17 lines
384 B
YAML
services:
|
|
portainer:
|
|
container_name: portainer
|
|
image: portainer/portainer-ce:lts
|
|
restart: always
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- portainer_data:/data
|
|
environment:
|
|
- TRUSTED_ORIGINS=port.home.johnsnexus.click
|
|
ports:
|
|
- 9443:9443
|
|
- 9000:9000 # Remove ???
|
|
|
|
volumes:
|
|
portainer_data:
|
|
name: portainer_data |