initial commit

This commit is contained in:
ston1th 2019-08-03 22:31:25 +02:00
commit 0e6be50e37
23 changed files with 1069 additions and 0 deletions

13
testapp/srv/Makefile Normal file
View file

@ -0,0 +1,13 @@
CC=docker
APP=srv
TAG=127.0.0.1:5000/testapp/$(APP):$(VERSION)
all: build push
build:
$(CC) build --build-arg VERSION=$(VERSION) -t $(TAG) .
push:
$(CC) push $(TAG)
.PHONY: build push