Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 496 Bytes

File metadata and controls

29 lines (22 loc) · 496 Bytes

README

Pre-requisites

Install docker

Running application

Everything

docker-compose build
docker-compose up

Piecemeal

# start only postgres in background
docker-compose up -d postgres
# start only app server
docker-compose up app
# run tests
docker-compose run test test
# run console within container
docker-compose run app console
# run bash within container
docker-compose run app bash