|
|
пре 5 година | |
|---|---|---|
| .github | пре 5 година | |
| cmd | пре 5 година | |
| internal | пре 5 година | |
| media | пре 5 година | |
| proto | пре 5 година | |
| var | пре 5 година | |
| webui | пре 5 година | |
| .dockerignore | пре 5 година | |
| .gitignore | пре 5 година | |
| .goreleaser.yml | пре 5 година | |
| CODE_OF_CONDUCT.md | пре 5 година | |
| CONTRIBUTING.adoc | пре 5 година | |
| Dockerfile | пре 5 година | |
| LICENSE | пре 5 година | |
| Makefile | пре 5 година | |
| OliveTin.proto | пре 5 година | |
| OliveTin.service | пре 5 година | |
| README.md | пре 5 година | |
| SECURITY.md | пре 5 година | |
| go.mod | пре 5 година | |
| tools.go | пре 5 година |

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.