diff options
Diffstat (limited to 'docker-compose.yml')
-rw-r--r-- | docker-compose.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..9a6ade5 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,16 @@ + +services: + jellyfin: + image: jellyfin/jellyfin + network_mode: host + volumes: + - ./testenv/config:/config + - ./testenv/cache:/cache + - ./testenv/media:/media + develop: + watch: + - action: sync+restart + path: ./bin/Debug/net8.0/ + target: /config/plugins/JCoverXtremePro/ + + |