14 docker compose initial commit

This commit is contained in:
Dominik
2024-05-10 17:53:43 +02:00
commit 277f8544ee
31 changed files with 1124 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
# https://www.portainer.io/
version: '3.3'
name: portainer
services:
portainer:
container_name: 'portainer'
ports:
- '9000:9000'
volumes:
- '/var/run/docker.sock:/var/run/docker.sock'
- './portainer_data:/data'
image: portainer/portainer-ce:latest
restart: 'unless-stopped'