POC-golang-postgres-docker/Makefile

13 lines
208 B
Makefile
Raw Normal View History

2020-09-11 14:01:41 +00:00
export NAME=genitywebapp
2020-09-10 12:27:23 +00:00
build:
2020-09-11 14:11:00 +00:00
COMPOSE_PROJECT_NAME=genitywebapp docker-compose up --build
2020-09-10 12:27:23 +00:00
2020-09-11 14:01:41 +00:00
run: build
docker-compose up
2020-09-10 12:27:23 +00:00
build-binary:
2020-09-11 09:13:09 +00:00
GOOS=linux GOARCH=amd64 go build
.PHONY: build-binary run build