- Copy
./server
directory to the server instance (VPS). - Run
cp .env-example .env
& set missing env variables - From the
./server
directory:docker-compose up -d
- Check the health of docker-compose container via:
docker-compose ps
- To delete all containers including its volumes use,
docker rm -vf $(docker ps -aq)
- To delete all the images,
docker rmi -f $(docker images -aq)