mirror of
https://github.com/theoleuthardt/homelab-docker-compose.git
synced 2026-06-05 23:41:07 +00:00
init all current docker compose files
This commit is contained in:
parent
3694b45ece
commit
adc70638d1
12 changed files with 432 additions and 0 deletions
14
portainer/docker-compose.yml
Normal file
14
portainer/docker-compose.yml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
services:
|
||||
portainer:
|
||||
image: portainer/portainer-ce:latest
|
||||
restart: always
|
||||
ports:
|
||||
- "8000:8000" # Optional für Edge-Agent
|
||||
- "9443:9443" # HTTPS-Zugriff auf Portainer (Web-UI)
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
- portainer_data:/data
|
||||
|
||||
volumes:
|
||||
portainer_data:
|
||||
external: true
|
||||
Loading…
Add table
Add a link
Reference in a new issue