mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-07 17:03:59 +01:00
17 lines
328 B
YAML
17 lines
328 B
YAML
---
|
|
volumes:
|
|
portainer-data:
|
|
driver: local
|
|
services:
|
|
app:
|
|
container_name: portainer
|
|
image: docker.io/portainer/portainer-ce:latest
|
|
ports:
|
|
- 9000:9000
|
|
- 9443:9443
|
|
- 8000:8000
|
|
volumes:
|
|
- /run/docker.sock:/var/run/docker.sock
|
|
- portainer-data:/data
|
|
restart: unless-stopped
|