Initial commit
This commit is contained in:
24
docker-compose.yml
Normal file
24
docker-compose.yml
Normal 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
|
||||
|
||||
Reference in New Issue
Block a user