Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 363 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 363 Bytes

db

Start app in docker for quck testing

Start containers

Container types

  • redis
  • postgres
  • nginx

Commands

# start one
docker-compose up -d ${CONTAINER_TYPE}

# stop one
docker-compose stop ${CONTAINER_TYPE}

# start all
docker-compose up -d

# stop all
docker-compose stop

# remove all
docker-compose down

# list
docker-compose ps