mirror of
https://github.com/michivonah/docker.git
synced 2025-12-22 20:36:27 +01:00
add jellyfin + vaultwarden
This commit is contained in:
parent
f8e1b48199
commit
5626a39d97
2 changed files with 27 additions and 0 deletions
14
jellyfin/docker-compose.yml
Normal file
14
jellyfin/docker-compose.yml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
version: '3.5'
|
||||
services:
|
||||
jellyfin:
|
||||
image: jellyfin/jellyfin
|
||||
container_name: jellyfin
|
||||
ports:
|
||||
- 8096:8096
|
||||
volumes:
|
||||
- ./config:/config
|
||||
- ./cache:/cache
|
||||
- ./media:/media
|
||||
restart: 'unless-stopped'
|
||||
environment:
|
||||
- TZ=Europe/Zurich
|
||||
13
vaultwarden/docker-compose.yml
Normal file
13
vaultwarden/docker-compose.yml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
version: "3"
|
||||
services:
|
||||
vaultwarden:
|
||||
image: vaultwarden/server
|
||||
container_name: vaultwarden
|
||||
ports:
|
||||
- 8080:80
|
||||
volumes:
|
||||
- ./data:/data
|
||||
restart: 'unless-stopped'
|
||||
environment:
|
||||
- ADMIN_TOKEN=TOKEN
|
||||
- SIGNUPS_ALLOWED=false
|
||||
Loading…
Add table
Add a link
Reference in a new issue