Skip to content

Commit 9a07673

Browse files
committed
[+] More instructions
1 parent 42ac32f commit 9a07673

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

README.HOST.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,24 @@
1010
4. Run `java -jar worldlinkd.jar`
1111
(if you installed other java versions before, make sure this java command points to Java 21)
1212

13-
## Option 2: Using Docker
13+
## Option 2: Using Docker Compose
1414

1515
1. Install [Docker](https://docs.docker.com/get-docker/)
1616
2. Clone / download this repository
1717
3. Open command prompt in this folder
1818
4. Run `docker compose up`
19+
20+
## Option 3: Using Docker Run
21+
22+
1. Install [Docker](https://docs.docker.com/get-docker/)
23+
2. Run `docker run -d --name worldlinkd --restart unless-stopped -p 20100:20100 -p 20101:20101 aquadx/worldlinkd`
24+
25+
## Setting Up Reverse Proxy
26+
27+
If you want HTTPS, you can use a reverse proxy like Caddy. Below is an example Caddyfile:
28+
29+
```caddy
30+
worldlinkd.example.com {
31+
reverse_proxy localhost:20100
32+
}
33+
```

0 commit comments

Comments
 (0)