Initial commit

This commit is contained in:
2023-04-21 10:43:34 +02:00
commit 2b76b3e9f2
4 changed files with 172 additions and 0 deletions

9
Makefile Normal file
View File

@@ -0,0 +1,9 @@
IMAGE_NAME := rexuiz-server
.PHONY: build
build:
docker build -t $(IMAGE_NAME) .
run:
docker compose up