-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker.compose.yml
42 lines (41 loc) · 918 Bytes
/
docker.compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
version: "3.4"
services:
jbet.sql:
image: postgres:9.5
restart: always
environment:
POSTGRES_PASSWORD: postgres
jbet.eventstore:
image: postgres:9.5
restart: always
environment:
POSTGRES_PASSWORD: postgres
jbet.client:
image: jbetclient
build:
context: ./client
dockerfile: ./Dockerfile
args:
REACT_APP_ENVIRONMENT: development
ports:
- "3000:3000"
jbet.api:
image: jbetapi
build:
context: ./server
dockerfile: ./src/Jbet.Api/Dockerfile
args:
DOTNET_BUILD_CONFIGURATION: Debug
ASPNETCORE_ENVIRONMENT: Development
ports:
- "5000:80"
- "5100:443"
environment:
ASPNETCORE_HTTPS_PORT: 5100
ASPNETCORE_URLS: https://+;http://+
depends_on:
- jbet.sql
- jbet.eventstore
links:
- jbet.sql:relationaldb
- jbet.eventstore:eventstore