1️⃣Standalone

Install and update

x86 and arm64 architecture supported

docker pull webdb/app && \
docker rm -f $(docker ps -a -q --filter ancestor=webdb/app) webdb || echo && \
docker run --name webdb -d \
	--restart=always \
	--add-host="host.docker.internal:host-gateway" \
	-v $HOME/.webdb:/usr/src/app/static/version \
	-p 127.0.0.1:22071:22071 webdb/app

πŸš€ App is now available on http://localhost:22071

This single-line command update and launch App

So when you need to update, just rerun this command

If you want more informations about the launch command -> https://docs.webdb.app/backend/docker-container

If you planned to share WebDB, please read https://docs.webdb.app/installation/security

Last updated