Skip to content

Latest commit

 

History

History
20 lines (19 loc) · 644 Bytes

README.md

File metadata and controls

20 lines (19 loc) · 644 Bytes

Install docker and docker-compose

  • install Docker
  • install docker-compose
    • with pip: pip install docker-compose

Docker-compose scenarios

  • start an nginx with the client:
npm install
npm run-script build
docker-compose -f etc/docker/docker-compose-dev.yml up --build
  • clone and start an nginx with the client:
docker-compose -f etc/docker/docker-compose-prod.yml up --build
  • run the backend server API and all it's dependencies
docker-compose -f etc/docker/docker-compose-backend.yml up