15 lines
388 B
YAML
15 lines
388 B
YAML
services:
|
|
portainer:
|
|
image: portainer/portainer-ce:latest
|
|
container_name: portainer
|
|
restart: always
|
|
ports:
|
|
- "9000:9000" # Port for Portainer web UI
|
|
- "9443:9443" # Port for Portainer HTTPS
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock # Access Docker daemon
|
|
- portainer_data:/data # Portainer data storage
|
|
|
|
volumes:
|
|
portainer_data:
|