Application for organizing sport events and balancing teams
In that mode code live-refresh is enabled for frontend.
docker-compose up
- will use an old image (won’t rebuild projects)docker-compose up --build
- rebuilds an image, so all new changes will be applieddocker-compose -f docker-compose-prod.yml up
- will use an old image (won’t rebuild projects)docker-compose -f docker-compose-prod.yml up --build
- rebuilds an image, so all new changes will be applieddocker-compose -f docker-compose-be.yml up
- will use an old image (won’t rebuild projects)docker-compose -f docker-compose-be.yml up --build
- rebuilds an image, so all new changes will be applied