summary refs log tree commit diff
path: root/Makefile
blob: 511c3c3d236d5ddaefae83b1963facf95fa08f99 (plain)
1
2
3
4
5
6
7
8
.PHONY: build-image run-container
.DEFAULT_GOAL := run-container

build-image:
	docker build -t onecontainer .

run-container: build-image
	docker run -e POSTGRES_HOST_AUTH_METHOD=trust -it --rm onecontainer