Initial commit

This commit is contained in:
2023-04-18 15:12:22 +02:00
commit 2e615a2f69
5 changed files with 178 additions and 0 deletions

24
docker-compose.yml Normal file
View File

@@ -0,0 +1,24 @@
version: "3.7"
services:
beerlog-srv-dev:
container_name: beerlog-srv-dev
restart: always
build:
context: ./
args:
BEERLOG_PORT: 8000
network: host
ports:
- 8000:8000
beerlog-srv-prod:
container_name: beerlog-srv-prod
restart: always
build:
context: ./
args:
BEERLOG_PORT: 8080
network: host
ports:
- 8080:8080