-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
51 lines (51 loc) · 1.28 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
43
44
45
46
47
48
49
50
51
version: "3"
services:
api:
build:
context: .
dockerfile: ./Dockerfile
volumes:
- .:/api
ports:
- 80:3000
command: bash -xc "
while !</dev/tcp/db/5432; do sleep 1; done;
cd ./database;
npx sequelize db:drop;
npx sequelize db:create;
npx sequelize db:migrate;
cd ../;
npm start;"
depends_on:
- db
environment:
- DATABASE_URL=postgres://postgres:password@db:5432/movie_db
- PORT=3000
- MOVIE_API_KEY=16e38afd
db:
image: postgres
environment:
- DATABASE_URL=postgres://postgres:password@db:5432/movie_db
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=password
- POSTGRES_DB=movie_db
tests:
build:
context: .
dockerfile: ./Dockerfile
environment:
- NODE_ENV=test
- DATABASE_URL=postgres://postgres:password@db:5432/movie_db
- MOVIE_API_KEY=16e38afd
volumes:
- .:/api
depends_on:
- db
command: bash -xc "
while !</dev/tcp/db/5432; do sleep 1; done;
cd ./database;
npx sequelize-cli db:drop;
npx sequelize-cli db:create;
npx sequelize-cli db:migrate;
cd ../;
npm test;"