Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,11 @@ Or run prebuilt docker:
```
docker run -p 8890:8890 -p 8891:8891 -p 8809:8809/udp -p 49152-51200:49152-51200/udp --env-file=.env -t ghcr.io/foxssake/noray:main
```
Or use the docker compose yaml provided

```
docker-compose up -d
```

The above will expose the following ports:

Expand Down
15 changes: 15 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
services:
noray:
image: ghcr.io/foxssake/noray:main
container_name: noray-server
restart: unless-stopped
ports:
- "8890:8890" # TCP port for client connections
- "8891:8891" # HTTP port for metrics
- "8809:8809/udp" # UDP port for remote registration
- "49152-51200:49152-51200/udp" # UDP relay ports
Comment thread
elementbound marked this conversation as resolved.
# Binding many ports can take time
# Use host networking locally
network_mode: host
env_file:
- .env
Loading