|
|
před 5 roky | |
|---|---|---|
| .github | před 5 roky | |
| cmd | před 5 roky | |
| internal | před 5 roky | |
| media | před 5 roky | |
| proto | před 5 roky | |
| var | před 5 roky | |
| webui | před 5 roky | |
| .dockerignore | před 5 roky | |
| .gitignore | před 5 roky | |
| .goreleaser.yml | před 5 roky | |
| CODE_OF_CONDUCT.md | před 5 roky | |
| CONTRIBUTING.adoc | před 5 roky | |
| Dockerfile | před 5 roky | |
| LICENSE | před 5 roky | |
| Makefile | před 5 roky | |
| OliveTin.proto | před 5 roky | |
| OliveTin.service | před 5 roky | |
| README.md | před 5 roky | |
| SECURITY.md | před 5 roky | |
| go.mod | před 5 roky | |
| tools.go | před 5 roky |

OliveTin is a web interface for running Linux shell commands.
Some example use cases;
podman restart plex without asking me, and without giving them shell access!Join the community on Discord.
Desktop web browser;
Desktop web browser (dark mode);
Mobile screen size (responsive layout);
All documentation can be found at http://olivetin.app . This includes installation and usage guide, etc.
config.yamlPut this config.yaml in /etc/OliveTin/ if you're running a standard service, or mount it at /config if running in a container.
listenAddressWebUI: 0.0.0.0:1337 # Listen on all addresses available, port 1337
logLevel: "INFO"
actions:
- title: Restart Plex
icon: smile
shell: docker restart plex
# This will send 1 ping
- title: Ping Google.com
shell: ping google.com -c 1
# Restart lightdm on host "overseer"
- title: restart lightdm
icon: poop
shell: ssh root@overseer 'service lightdm restart'
A full example config can be found at in this repository - config.yaml.