-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
66 lines (62 loc) · 1.8 KB
/
docker-compose.yml
File metadata and controls
66 lines (62 loc) · 1.8 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
version: "3"
services:
postgres:
image: postgres:latest
restart: always
environment:
# A better approach would be to store the pass the password
# to postgres from a docker secret, but docker swarm must be enabled
- POSTGRES_PASSWORD=postgres_password
redis:
image: redis:latest
nginx:
depends_on:
- api
- client
restart: always
build:
dockerfile: Dockerfile.dev
context: ./nginx
ports:
- "8080:80"
api: # /server
depends_on:
- postgres
build:
dockerfile: Dockerfile.dev
context: ./server
volumes:
# we want to use node_modules stored in docker containers b/c
# that's where we're running the application.
# This volume tells docker to not override the node_modules inside the container and use it for the app
- /app/node_modules
# create volume b/w server and app directories to see changes in real time inside container
- ./server:/app
# pass environment variables server needs to connect to redis and postgres databases
environment:
- REDIS_HOST=redis # name of image pulled from dockerhub
- REDIS_PORT=6379 # default redis port
- PGUSER=postgres
- PGHOST=postgres
- PGDATABASE=postgres
- PGPASSWORD=postgres_password # default postgres password
- PGPORT=5432
client:
# need to stay connected to STDIN channel due to react bug
stdin_open: true
build:
dockerfile: Dockerfile.dev
context: ./client
volumes:
- /app/node_modules
- ./client:/app
worker:
build:
dockerfile: Dockerfile.dev
context: ./worker
volumes:
- /app/node_modules
- ./worker:/app
environment:
- REDIS_HOST=redis
- REDIS_PORT=6379