Skip to content

Latest commit

 

History

History
18 lines (17 loc) · 561 Bytes

File metadata and controls

18 lines (17 loc) · 561 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:
docker-compose -f docker-compose-dev.yml up --build
  • clone and start an nginx with the client:
docker-compose -f docker-compose-prod.yml up --build
  • run the backend server dependencies
docker-compose -f docker-compose-backend.yml up