-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
39 lines (38 loc) · 1023 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
# THIS DOCKERFILE IS INTENDED FOR DEVELOPMENT ENVIRONMENTS
# DO NOT USE THIS FOR PRODUCTION USAGES.
version: '3'
services:
brie-db:
image: postgres
container_name: postgres
ports:
- '5431:5432'
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=briedb
brie-db-test:
image: postgres
container_name: briedbtest
ports:
- '5432:5432'
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=briedbtest
brie-backend:
build:
context: .
dockerfile: Dockerfile.BE
env_file:
- env.staging
container_name: brie-backend
ports:
- '8080:4000'
brie-frontend:
build:
context: ../brie-frontend/
dockerfile: Dockerfile.FE
container_name: brie-frontend
ports:
- '80:80'