Compare commits

...

6 Commits

Author SHA1 Message Date
Borgal
a6dfd7c820 kasm/initial hinzugefügt 2024-11-17 21:04:19 +00:00
Borgal
30c22ce093 jellyfin/initial hinzugefügt 2024-11-17 21:03:58 +00:00
Borgal
c85101b221 webdav/Photo entfernt 2024-11-17 21:01:55 +00:00
Borgal
00128f9b55 grafana/chronograph hinzugefügt 2024-11-17 20:54:49 +00:00
Borgal
ce78560129 bitwarden/Auf Alpine Image gewechselt 2024-11-17 20:53:47 +00:00
Borgal
e91cec5420 proxy/auf latest Image gewechselt 2024-11-17 20:52:39 +00:00
7 changed files with 73 additions and 5 deletions

View File

@@ -1,6 +1,7 @@
services: services:
bitwarden: bitwarden:
image: vaultwarden/server:latest #image: vaultwarden/server:latest
image: vaultwarden/server:latest-alpine
container_name: bitwarden container_name: bitwarden
environment: environment:
- TZ=Europe/Berlin - TZ=Europe/Berlin

View File

@@ -16,6 +16,21 @@ services:
- INFLUXDB_LOGGING_LEVEL=warn - INFLUXDB_LOGGING_LEVEL=warn
restart: unless-stopped restart: unless-stopped
chronograf:
image: chronograf:1.6
container_name: chronograf
volumes:
- ./chronograf_data:/var/lib/chronograf
ports:
- 8088:8888
depends_on:
- influxdb
environment:
- INFLUXDB_URL=http://influxdb:8086
- INFLUXDB_USERNAME=${INFLUXDB_USERNAME}
- INFLUXDB_PASSWORD=${INFLUXDB_PASSWORD}
restart: always
grafana: grafana:
image: grafana/grafana:latest image: grafana/grafana:latest
container_name: grafana container_name: grafana

5
jellyfin/.env.sample Normal file
View File

@@ -0,0 +1,5 @@
NFS_SERVER=192.168.0.xxx
PFAD=/Pfad/zu/den/Videos
#
# Auf Rechte achten
#

View File

@@ -0,0 +1,28 @@
services:
jellyfin:
image: lscr.io/linuxserver/jellyfin:latest
container_name: jellyfin
environment:
- PUID=1000
- PGID=1001
- TZ=Europe/Berlin
#- JELLYFIN_PublishedServerUrl=http://192.168.0.5 #optional
volumes:
- ./config:/config
#- /path/to/tvseries:/data/tvshows
- video:/data/movies
ports:
- 8097:8096
#- 8920:8920 #optional
#- 7359:7359/udp #optional
#- 1900:1900/udp #optional
restart: unless-stopped
volumes:
video:
name: video
driver: local
driver_opts:
type: nfs4
o: addr=${NFS_SERVER},rw
device: ":${PFAD}"

22
kasm/docker-compose.yml Normal file
View File

@@ -0,0 +1,22 @@
services:
kasm:
image: lscr.io/linuxserver/kasm:latest
container_name: kasm
privileged: true
security_opt:
- apparmor:rootlesskit #optional
environment:
- KASM_PORT=8443
- TZ=Europe/Berlin
- PGID=1000
- PUID=1001
volumes:
- ./data:/opt
- ./profiles:/profiles
- ./dev/input:/dev/input
- ./run/udev/data:/run/udev/data
ports:
- 3001:3000
- 8443:8443
restart: unless-stopped

View File

@@ -1,7 +1,6 @@
services: services:
app: app:
image: 'jc21/nginx-proxy-manager:latest' image: 'jc21/nginx-proxy-manager:latest'
#image: 'jc21/nginx-proxy-manager:2.10.4'
container_name: reverse-proxy container_name: reverse-proxy
restart: unless-stopped restart: unless-stopped
environment: environment:

View File

@@ -6,9 +6,7 @@ services:
ports: ports:
- "8014:80" - "8014:80"
volumes: volumes:
# data
- ./data:/data - ./data:/data
#- Photos:/data/Photos
- Backup:/data/Backup - Backup:/data/Backup
# user and password # user and password
- ./user/htpasswd:/opt/nginx/conf/htpasswd:ro - ./user/htpasswd:/opt/nginx/conf/htpasswd:ro