init
This commit is contained in:
commit
c89d84b38f
5 changed files with 145 additions and 0 deletions
14
Makefile
Normal file
14
Makefile
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
.PHONY: build shell
|
||||
|
||||
DOCKER_IMAGE := dr.dnix.de/inspircd
|
||||
|
||||
all: build push
|
||||
|
||||
build:
|
||||
docker build --no-cache -f Dockerfile -t $(DOCKER_IMAGE) .
|
||||
|
||||
push:
|
||||
docker push $(DOCKER_IMAGE)
|
||||
|
||||
shell: build
|
||||
docker run --rm -it $(DOCKER_IMAGE) bash
|
||||
Loading…
Add table
Add a link
Reference in a new issue