14 lines
289 B
YAML
14 lines
289 B
YAML
version: "3"
|
|
services:
|
|
portainer:
|
|
image: portainer/portainer-ce:latest
|
|
ports:
|
|
- 9443:9443
|
|
env_file:
|
|
- stack.env
|
|
volumes:
|
|
- ${PORTAINER_DATA}:/data
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
restart: unless-stopped
|
|
volumes:
|
|
data: |