This repository was archived by the owner on Jun 24, 2021. It is now read-only.
File tree 8 files changed +95
-83
lines changed
8 files changed +95
-83
lines changed Original file line number Diff line number Diff line change
1
+ NODE_ENV=test
2
+ SERVER_PORT=1778
3
+ DB_CONNECTOR=postgres
4
+ DB_HOST=postgres
5
+ DB_USER=postgres
6
+ DB_PASSWORD=postgres
7
+ DB_DATABASE=nest_graphql_test
8
+ DB_PORT=5432
9
+ PGADMIN_DEFAULT_EMAIL=admin@admin.com
10
+ PGADMIN_DEFAULT_PASSWORD=admin
11
+
12
+
13
+ DATABASE_URL=postgresql://${DB_USER}:${DB_PASSWORD}@${DB_HOST}:${DB_PORT}/${DB_DATABASE}?schema=public
Original file line number Diff line number Diff line change 1
1
version : ' 3.8'
2
2
services :
3
- nest-api-prod :
3
+ nest-api :
4
4
container_name : nest-graphql-api-prod
5
5
build :
6
6
context : .
@@ -13,35 +13,12 @@ services:
13
13
networks :
14
14
- nest-graphql-network
15
15
16
- prisma :
17
- image : prismagraphql/prisma:latest
18
- ports :
19
- - ' 4466:4466'
20
- depends_on :
21
- - postgres
22
- env_file :
23
- - " .env"
24
- environment :
25
- PRISMA_CONFIG : |
26
- port: 4466
27
- databases:
28
- default:
29
- connector: ${DB_CONNECTOR}
30
- host: ${DB_HOST}
31
- port: ${DB_PORT}
32
- user: ${DB_USER}
33
- password: ${DB_PASSWORD}
34
- networks :
35
- - nest-graphql-network
36
- logging :
37
- driver : none
38
-
39
-
40
16
postgres :
41
17
image : postgres:latest
18
+ container_name : nest-postgres
42
19
restart : always
43
20
env_file :
44
- - " .env"
21
+ - .env.production
45
22
environment :
46
23
POSTGRES_USER : ${DB_USER}
47
24
POSTGRES_PASSWORD : ${DB_PASSWORD}
@@ -53,22 +30,6 @@ services:
53
30
logging :
54
31
driver : none
55
32
56
- pgadmin :
57
- links :
58
- - postgres:postgres
59
- container_name : pgadmin
60
- image : dpage/pgadmin4
61
- restart : unless-stopped
62
- ports :
63
- - ' 8080:80'
64
- volumes :
65
- - /data/pgadmin:/root/.pgadmin
66
- env_file :
67
- - .env
68
- networks :
69
- - nest-graphql-network
70
- logging :
71
- driver : none
72
33
73
34
nest-nginx :
74
35
container_name : nest-nginx
Original file line number Diff line number Diff line change
1
+ version : ' 3.8'
2
+ services :
3
+ nest-api :
4
+ container_name : nest-graphql-api-test
5
+ build :
6
+ context : .
7
+ dockerfile : docker/Dockerfile
8
+ volumes :
9
+ - .:/usr/src/app
10
+ - /usr/src/app/node_modules
11
+ depends_on :
12
+ - postgres
13
+ networks :
14
+ - nest-graphql-network
15
+
16
+
17
+ postgres :
18
+ image : postgres:latest
19
+ container_name : nest-postgres-test
20
+ restart : always
21
+ env_file :
22
+ - .env.test
23
+ expose :
24
+ - 5434
25
+ ports :
26
+ - 5434:5432
27
+ environment :
28
+ POSTGRES_USER : ${DB_USER}
29
+ POSTGRES_PASSWORD : ${DB_PASSWORD}
30
+ POSTGRES_DB : ${DB_DATABASE}
31
+ volumes :
32
+ - postgres_data:/var/lib/postgresql/data
33
+ networks :
34
+ - nest-graphql-network
35
+ logging :
36
+ driver : none
37
+
38
+ pgadmin :
39
+ links :
40
+ - postgres:postgres
41
+ container_name : nest-pgadmin
42
+ image : dpage/pgadmin4
43
+ restart : unless-stopped
44
+ ports :
45
+ - ' 8080:80'
46
+ volumes :
47
+ - /data/pgadmin:/root/.pgadmin
48
+ env_file :
49
+ - .env
50
+ networks :
51
+ - nest-graphql-network
52
+ logging :
53
+ driver : none
54
+
55
+
56
+ volumes :
57
+ postgres_data :
58
+ driver : local
59
+ networks :
60
+ nest-graphql-network :
61
+ driver : bridge
62
+ name : nest-graphql-network
Original file line number Diff line number Diff line change @@ -13,32 +13,10 @@ services:
13
13
networks :
14
14
- nest-graphql-network
15
15
16
- prisma :
17
- image : prismagraphql/prisma:latest
18
- ports :
19
- - ' 4466:4466'
20
- depends_on :
21
- - postgres
22
- env_file :
23
- - " .env"
24
- environment :
25
- PRISMA_CONFIG : |
26
- port: 4466
27
- databases:
28
- default:
29
- connector: ${DB_CONNECTOR}
30
- host: ${DB_HOST}
31
- port: ${DB_PORT}
32
- user: ${DB_USER}
33
- password: ${DB_PASSWORD}
34
- networks :
35
- - nest-graphql-network
36
- logging :
37
- driver : none
38
-
39
16
40
17
postgres :
41
18
image : postgres:latest
19
+ container_name : nest-postgres
42
20
restart : always
43
21
env_file :
44
22
- " .env"
@@ -56,7 +34,7 @@ services:
56
34
pgadmin :
57
35
links :
58
36
- postgres:postgres
59
- container_name : pgadmin
37
+ container_name : nest- pgadmin
60
38
image : dpage/pgadmin4
61
39
restart : unless-stopped
62
40
ports :
Original file line number Diff line number Diff line change 1
- FROM node:lts: alpine
1
+ FROM node:lts- alpine
2
2
3
3
WORKDIR /usr/src/app
4
4
@@ -10,4 +10,4 @@ RUN yarn prisma generate
10
10
11
11
COPY . ./
12
12
13
- CMD ["yarn" , "start:dev" ]
13
+ CMD ["yarn" , "start:dev" ]
Original file line number Diff line number Diff line change
1
+ FROM node:lts-alpine
2
+
3
+ WORKDIR /usr/src/app
4
+
5
+ COPY package*.json yarn.lock ./
6
+ COPY prisma ./prisma/
7
+
8
+ RUN yarn install
9
+ RUN yarn prisma generate
10
+
11
+ COPY . ./
12
+
13
+ CMD ["yarn", "start:prod"]
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments