consolidation of old templates

This commit is contained in:
xcad2k
2021-06-11 15:05:20 +02:00
parent 0ea81cf7c2
commit d91bf39c3e
19 changed files with 496 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
---
version: '2.1'
services:
duplicati:
image: ghcr.io/linuxserver/duplicati
container_name: duplicati
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Berlin
volumes:
- /AmberPRO/duplicati/config:/config
- /Backups:/backups
- /:/source
ports:
- 8200:8200
restart: unless-stopped

View File

@@ -0,0 +1,12 @@
---
version: '3'
services:
app:
image: 'portainer/portainer-ce:latest'
ports:
- '9000:9000'
- '8000:8000'
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /AmberPro/portainer/data:/data

View File

@@ -0,0 +1,30 @@
---
version: '2'
services:
configure:
image: quay.io/gravitational/teleport:4.3
container_name: teleport-configure
entrypoint: /bin/sh
hostname: dev.the-digital-life.com
command: -c "if [ ! -f /etc/teleport/teleport.yaml ]; then teleport configure > /etc/teleport/teleport.yaml; fi"
volumes:
- ./teleport/config:/etc/teleport
teleport:
image: quay.io/gravitational/teleport:4.3
container_name: teleport
entrypoint: /bin/sh
hostname: dev.the-digital-life.com
command: -c "sleep 1 && /bin/dumb-init teleport start -c /etc/teleport/teleport.yaml"
ports:
- "3023:3023"
- "3024:3024"
- "3025:3025"
- "3080:3080"
volumes:
- ./teleport/config:/etc/teleport
- ./teleport/data:/var/lib/teleport
depends_on:
- configure