This is the main repository from which you can run the full stack.
Running with docker is very simple. All you need is docker and docker-compose
docker-compose pull # update local images
docker-compose up -d # run all needed containers in background
This will start the webapp on http://localhost:3001
This will use the local files to make a new docker image instead of pulling one from the specified registry.
docker-compose build
docker-compose up -d
Optionally specify --parallel
after docker-compose build
for faster builds.
Changing the port of the backend
container is currently not possible because the value is hard coded into .env.docker
in the frontend.
init (after clone)
git submodule update --init --recursive
update all submodules with
git submodule -q foreach git pull -q origin main
git add .
git commit -m "update submodules"
git push