|
|
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://docs.olivetin.app . This includes installation and usage guide, etc.
config.yamlThis is a quick example of config.yaml - but again, lots of documentation for how to write your config.yaml can be found at the documentation site.
Put this config.yaml in /etc/OliveTin/ if you're running a standard service, or mount it at /config if running in a container.
# Listen on all addresses available, port 1337
listenAddressSingleHTTPFrontend: 0.0.0.0:1337
# Choose from INFO (default), WARN and DEBUG
logLevel: "INFO"
# Actions (buttons) to show up on the WebUI:
actions:
# Docs: https://docs.olivetin.app/action-container-control.html
- title: Restart Plex
icon: smile
shell: docker restart plex
# This will send 1 ping
# Docs: https://docs.olivetin.app/action-ping.html
- title: Ping Google.com
shell: ping google.com -c 1
# Restart lightdm on host "overseer"
# Docs: https://docs.olivetin.app/action-ssh.html
- 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.