Very Easy Sys Admin - deploy projects to a VPS without having 153948 years of sys admin experience
This is an alternative to docker-compose with a GUI. Why? Because I don't want to ssh into my server every time I want to make a small update to my side project.
- Create and manage docker containers, networks, and volumes with a web interface
- Create custom templates to launch containers with predefined settings
- Create templates form your existing containers
- Github action to deploy automatically
- Point domains to any container (or a separate service)
- Get SSL certificates from LetsEncrypt
- Ability to use custom docker registry (or host it yourself)
- Install go
- Run
go install github.com/nerijusdu/vesa@latest
- Run
vesa --init
to initialize the app for the first time (running this command multiple times will rewrite the current config) - Run
vesa
to start the server
To auto start vesa when your server boots up create a systemd service file in /etc/systemd/system/vesa.service
with the following content:
[Unit]
Description=Vesa App Service
[Service]
Environment=HOME=/home/YOUR_USERNAME
ExecStart=/home/YOUR_USERNAME/go/bin/vesa
[Install]
WantedBy=default.target
Replace YOUR_USERNAME
with your username. ExecStart
points to go binary location.
Then run the following commands:
sudo systemctl daemon-reload
sudo systemctl enable vesa
sudo systemctl start vesa
To create easy releases using github actions
- Create an API client through web interface (Settings -> Client authentication)
- Copy files from
github-actions
folder to your projects.github/workflows
folder - Open
release.yml
file and update environment variables and required secrets to your github repository.
- Allow docker to access local service with
sudo ufw allow from 172.22.0.0/16 to 172.17.0.1
- Run
vesa --init
, this will overwrite previous config
Docker:
- Manage volumes
- Test docker hub auth
Other:
- Cron jobs
- Add https without redirect entrypoint
- Script runner?
- Create auto-boot service from CLI?
- Better UI
- CLI tool to setup github actions
- Secret manager
- Is it possible to use vesa in container?
Bugs: