Skip to content
This repository was archived by the owner on Jun 24, 2021. It is now read-only.

Commit 90dffe2

Browse files
committedFeb 3, 2021
Update docker
1 parent 484e871 commit 90dffe2

8 files changed

+95
-83
lines changed
 

‎.env.test.example

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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

‎docker-compose.production.yml

+3-42
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
version: '3.8'
22
services:
3-
nest-api-prod:
3+
nest-api:
44
container_name: nest-graphql-api-prod
55
build:
66
context: .
@@ -13,35 +13,12 @@ services:
1313
networks:
1414
- nest-graphql-network
1515

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-
4016
postgres:
4117
image: postgres:latest
18+
container_name: nest-postgres
4219
restart: always
4320
env_file:
44-
- ".env"
21+
- .env.production
4522
environment:
4623
POSTGRES_USER: ${DB_USER}
4724
POSTGRES_PASSWORD: ${DB_PASSWORD}
@@ -53,22 +30,6 @@ services:
5330
logging:
5431
driver: none
5532

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
7233

7334
nest-nginx:
7435
container_name: nest-nginx

‎docker-compose.test.yml

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
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

‎docker-compose.yml

+2-24
Original file line numberDiff line numberDiff line change
@@ -13,32 +13,10 @@ services:
1313
networks:
1414
- nest-graphql-network
1515

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-
3916

4017
postgres:
4118
image: postgres:latest
19+
container_name: nest-postgres
4220
restart: always
4321
env_file:
4422
- ".env"
@@ -56,7 +34,7 @@ services:
5634
pgadmin:
5735
links:
5836
- postgres:postgres
59-
container_name: pgadmin
37+
container_name: nest-pgadmin
6038
image: dpage/pgadmin4
6139
restart: unless-stopped
6240
ports:

‎docker/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:lts:alpine
1+
FROM node:lts-alpine
22

33
WORKDIR /usr/src/app
44

@@ -10,4 +10,4 @@ RUN yarn prisma generate
1010

1111
COPY . ./
1212

13-
CMD ["yarn", "start:dev"]
13+
CMD ["yarn", "start:dev"]

‎docker/Dockerfile.prod

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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"]

‎docker/prisma/Dockerfile-prisma

-14
This file was deleted.

‎docker/prisma/prisma.env.example

-1
This file was deleted.

0 commit comments

Comments
 (0)
This repository has been archived.