[logseq-plugin-git:commit] 2023-07-02T06:43:27.839Z

This commit is contained in:
matze 2023-07-02 08:43:27 +02:00
parent d178135a0f
commit 5f00017f3c

View File

@ -4,4 +4,28 @@
- Port Forward 3129 to Container, and Enable it on Router
- Custom Device IPs
- for running in docker:
- ["10.0.0.101"]
- ["10.0.0.101"]
- Aktuell Settings in Compose:
- ```yaml
version: '3'
services:
jdownloader:
image: antlafarge/jdownloader:1.1
restart: always
user: "1000:1000"
volumes:
- /data/jdownloader/downloads:/jdownloader/downloads/
- /data/jdownloader/cfg:/jdownloader/cfg/
environment:
- "JD_EMAIL=tugba.hermans@yandex.com"
- "JD_PASSWORD=ohZakiu8ee"
- "JD_DEVICENAME=CLOUD" # optional
ports:
- "3129:3129" # for direct connection mode
networks:
- web
networks:
web:
external: true
```