-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
54 lines (48 loc) · 1008 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
50
51
52
53
54
version: "3.8"
services:
test:
build: .
working_dir: /app
volumes:
- .:/app
- node-modules:/app/node_modules
environment:
MONGO_URI: mongodb://mongodb:27017/test
REDIS_URI: redis://redis:6379
MYSQL_URI: mysql://root:password@mysql:3306/test
POSTGRES_URI: postgres://postgres:postgres@postgres:5432/postgres
DEBUG: cronyx
command: bun --watch test
restart: always
depends_on:
- mongodb
- mysql
- postgres
- redis
mongodb:
image: mongo:latest
ports:
- 27017:27017
restart: always
redis:
image: redis:latest
ports:
- 6379:6379
restart: always
mysql:
image: mysql:5.7
ports:
- 3306:3306
restart: always
environment:
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: test
postgres:
image: postgres:latest
ports:
- 5432:5432
restart: always
environment:
POSTGRES_PASSWORD: postgres
volumes:
node-modules: {}