forked from git-mirrors/GeyserConnect
* Move to a more linear connection flow and remove the need for a second port * Update configs * Remove un-used remote address config options * Update docker file * Start internal Geyser on boot * Fix srv resolving * Fix inventory data when loading into the server
10 lines
No EOL
370 B
Markdown
10 lines
No EOL
370 B
Markdown
# GeyserConnect using Docker
|
|
This contains the docker image and a basic way of running GeyserConnect
|
|
|
|
## Setup
|
|
1. Download GeyserConnect to a subfolder called `data`
|
|
2. Build the docker file using `docker build -t geyser-connect .`
|
|
3. Start geyser using this:
|
|
```
|
|
docker run --name "geyser-c" -d --restart always -p 19132:19132/udp -v $(pwd)/data:/gsc geyser-connect
|
|
``` |