Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 567 Bytes

README.md

File metadata and controls

26 lines (21 loc) · 567 Bytes

Server configurations

Server initial setup

  1. Copy ./server directory to the server instance (VPS).
  2. Run cp .env-example .env & set missing env variables
  3. From the ./server directory:
    docker-compose up -d
  4. Check the health of docker-compose container via:
    docker-compose ps

Helpful docker commands

  • 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)