backend / Makefile
praneethys's picture
postgres database integration (#3)
d5684b3 verified
raw
history blame
No virus
277 Bytes
include .env
build-postgres:
docker build -t codepath_project_postgres -f Dockerfile.local.postgres .
run-postgres:
docker run -d -p 5432:5432 -e POSTGRES_PASSWORD=${POSTGRES_PASSWORD} -e POSTGRES_USER=${POSTGRES_USER} --name ${POSTGRES_DB_NAME} codepath_project_postgres