This is localapps server, a project designed to simplify the management and deployment of local applications.
- Easy setup and configuration
- Apps shut down when you don't use them
- Docker
Go to releases page and download the binary for your OS and architecture.
- Do
localapps-server up
- Go to
http://localhost:8080
and you're good to go
- Login to your vps
- Create data directory for localapps using:
mkdir -p ~/.config/localapps
- Create
access-url.txt
file inside it using:
echo "http://example.com:8080" > ~/.config/localapps/access-url.txt
- Start the server using:
docker run -d --name localapps-server -v /var/run/docker.sock:/var/run/docker.sock -v ~/.config/localapps:/root/.config/localapps -p 8080:8080 ghcr.io/cyberl1/localapps-server
- Go to the url you set to access localapps