Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/maelvls/mc-status

CLI for pinging your server and showing that as a web page.
https://github.com/maelvls/mc-status

Last synced: 26 days ago
JSON representation

CLI for pinging your server and showing that as a web page.

Awesome Lists containing this project

README

        

# Minecrat Status Server

The `mc-status` CLI lets you know if your minecraft server is up. It also lets
you create a server that shows that information.

## Deploy

```bash
KO_DOCKER_REPO=ghcr.io/maelvls/mc-status KO_DEFAULTBASEIMAGE=alpine \
ko build . --bare --tarball /tmp/out.tar --push=false
ssh remote /usr/local/bin/docker load /dev/null 2>/dev/null && docker rm -f mc-status || true
docker run -d --restart=always --name mc-status -p 8081:8081 \
serve -mc-host=foo
```