Compare commits
6 Commits
8b73baa31d
...
a6dfd7c820
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a6dfd7c820 | ||
|
|
30c22ce093 | ||
|
|
c85101b221 | ||
|
|
00128f9b55 | ||
|
|
ce78560129 | ||
|
|
e91cec5420 |
@@ -1,6 +1,7 @@
|
||||
services:
|
||||
bitwarden:
|
||||
image: vaultwarden/server:latest
|
||||
#image: vaultwarden/server:latest
|
||||
image: vaultwarden/server:latest-alpine
|
||||
container_name: bitwarden
|
||||
environment:
|
||||
- TZ=Europe/Berlin
|
||||
|
||||
@@ -16,6 +16,21 @@ services:
|
||||
- INFLUXDB_LOGGING_LEVEL=warn
|
||||
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:
|
||||
image: grafana/grafana:latest
|
||||
container_name: grafana
|
||||
@@ -29,4 +44,4 @@ services:
|
||||
environment:
|
||||
- GF_SECURITY_ADMIN_USER=${GRAFANA_USERNAME}
|
||||
- GF_SECURITY_ADMIN_PASSWORD=${GRAFANA_PASSWORD}
|
||||
restart: unless-stopped
|
||||
restart: unless-stopped
|
||||
|
||||
5
jellyfin/.env.sample
Normal file
5
jellyfin/.env.sample
Normal file
@@ -0,0 +1,5 @@
|
||||
NFS_SERVER=192.168.0.xxx
|
||||
PFAD=/Pfad/zu/den/Videos
|
||||
#
|
||||
# Auf Rechte achten
|
||||
#
|
||||
28
jellyfin/docker-compose.yml
Normal file
28
jellyfin/docker-compose.yml
Normal 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
22
kasm/docker-compose.yml
Normal 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
|
||||
@@ -1,7 +1,6 @@
|
||||
services:
|
||||
app:
|
||||
image: 'jc21/nginx-proxy-manager:latest'
|
||||
#image: 'jc21/nginx-proxy-manager:2.10.4'
|
||||
container_name: reverse-proxy
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
|
||||
@@ -6,9 +6,7 @@ services:
|
||||
ports:
|
||||
- "8014:80"
|
||||
volumes:
|
||||
# data
|
||||
- ./data:/data
|
||||
#- Photos:/data/Photos
|
||||
- Backup:/data/Backup
|
||||
# user and password
|
||||
- ./user/htpasswd:/opt/nginx/conf/htpasswd:ro
|
||||
|
||||
Reference in New Issue
Block a user