-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
42 lines (41 loc) · 1.18 KB
/
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
# This docker-compose file is meant to be run for development and serves as a
# guideline for a production deployment.
version: '3.8'
# Techsuite consists of 3 services:
# 1. React client at port 3000.
# 2. Flask REST API and websocket server at port 9002.
# 3. PostgreSQL database server at port 5432.
services:
client:
build:
context: client
dockerfile: Dockerfile
ports:
- 3000:80
db:
build:
context: server
dockerfile: Dockerfile.db
environment:
# These credentials are used for creating the db superuser. They're not
# the credentials we use from the API side.
POSTGRES_PASSWORD: 1989
POSTGRES_USER: admin
ports:
- 5432:5432
volumes:
- db-data:/var/lib/postgres/data
api:
build:
context: server
dockerfile: Dockerfile.api
depends_on:
- db
environment:
PORT: 9002
DATABASE_URI: postgresql://tim:1989@db:5432/techsuite
BASE_URI: http://localhost:9002/api
ports:
- 9002:9002
volumes:
db-data: