-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
47 lines (44 loc) · 984 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
43
44
45
46
47
version: "3"
services:
postgres:
container_name: postgresdb
image: postgres:11-alpine
ports:
- "5432:5432"
volumes:
- ./db/initdb:/docker-entrypoint-initdb.d
environment:
POSTGRES_DB: ${POSTGRES_DB}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
backend:
container_name: backend
restart: on-failure
build:
context: ./backend
ports:
- "5000:5000"
volumes:
- ./backend:/var/app
depends_on:
- postgres
environment:
WAIT_HOSTS: postgres:5432
POSTGRES_HOST: postgres
POSTGRES_DB: ${POSTGRES_DB}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
frontend:
container_name: frontend
restart: on-failure
build:
context: ./frontend
args:
API_HOST: ${API_HOST}
ports:
- "80:80"
volumes:
- ./frontend/public:/app/public
- ./frontend/src:/app/src
depends_on:
- backend
environment:
WAIT_HOSTS: backend:5000