Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 398 Bytes

BUILD.md

File metadata and controls

17 lines (13 loc) · 398 Bytes

Local docker build

Because building the container on my VPS takes forever and makes it extremely laggy, you can build the container locally and then scp it to your server:

docker save -o rozrazovak.tar rozrazovak:latest
scp rozrazovak.tar <server>:<a path>

Then on your server:

docker compose down
docker load -i rozrazovak.tar
docker system prune -f
docker compose up -d