standalone-nuvotifier
Standalone NuVotifier server implementation.
2.2K
A NuVotifier fork with Redis forwarding support and a standalone server implementation. From the original README:
NuVotifier is a secure alternative to using the original Votifier project. NuVotifier will work in place of Votifier - any vote listener that supports Votifier will also support NuVotifier.
You can get the latest release directly from GitHub by clicking here. Then, follow the instructions for your server software or for the standalone version.
Drag and drop the downloaded JAR into your plugins/ folder. You should've downloaded the JAR that has your server software in its name.
If you've done everything right, it should work out of the box.
Open up the terminal, go into the directory the previously downloaded JAR is at, and then run it like this:
$ java -Xms512M -Xmx512M -jar nuvotifier-standalone.jar
You can also use command line arguments to configure some settings, such as the hostname:
$ java -Xms512M -Xmx512M -jar nuvotifier-standalone.jar --host 127.0.0.1 --config /etc/nuvotifier/
To get a full list of options, run:
$ java -jar nuvotifier-standalone.jar --help
A Docker image is available at Docker Hub. To pull it, run:
$ docker pull azurejelly/standalone-nuvotifier:latest
You can run the image using a command like:
$ docker run -p 8192:8192 \
-v /etc/nuvotifier:/app/config \
--restart unless-stopped \
--name nuvotifier \
azurejelly/standalone-nuvotifier:latest
--port 8192
This will:
/etc/nuvotifier (host) to /app/config (container) using bind mounts;nuvotifier;azurejelly/standalone-nuvotifier:latest image;--port 8192 as a command line argument to NuVotifier.Additionally, if you're also running your Minecraft server with Docker, you could create a network for cross-container communication (though do note that you will need to recreate your existing containers in order to do this):
$ docker network create votifierNetwork
$ docker run ... --network votifierNetwork ...
If you want to use Docker Compose, an example docker-compose.yml file is available on the repository.
NuVotifier is GNU GPLv3 licensed. This project's license can be viewed here.
Content type
Image
Digest
sha256:d067b7436…
Size
76.6 MB
Last updated
4 months ago
docker pull azurejelly/standalone-nuvotifier:unstable