-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
49 lines (47 loc) · 903 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
48
49
version: "3"
services:
redis:
image: redis:alpine
ports:
- 6379:6379
command: redis-server --appendonly yes
volumes:
- redis:/data
api:
image: node:16
environment:
- REDIS_HOST=redis
ports:
- 3000:3000
command:
- /bin/sh
- -c
- |
yarn
yarn run start-api
volumes:
- ./src:/src:ro
- ./package.json:/package.json
- ./yarn.lock:/yarn.lock
- ./index.js:/index.js
- ./watcher.js:/watcher.js
- ./.env:/.env
watcher:
image: node:16
environment:
- REDIS_HOST=redis
command:
- /bin/sh
- -c
- |
yarn
yarn run start-watch
volumes:
- ./src:/src:ro
- ./package.json:/package.json
- ./yarn.lock:/yarn.lock
- ./index.js:/index.js
- ./watcher.js:/watcher.js
- ./.env:/.env
volumes:
redis: