-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
73 lines (67 loc) · 1.64 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
version: '3.0'
volumes:
data:
driver: local
networks:
simple-network:
driver: bridge
services:
postgres:
container_name: postgres
image: postgres
restart: unless-stopped
environment:
POSTGRES_DB: node-crud
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
ports:
- "5432:5432"
volumes:
- data:/var/lib/postgresql/data
networks:
- simple-network
api:
container_name: api
image: api
restart: unless-stopped
build:
context: simple-node-api
dockerfile: Dockerfile
ports:
- "3000:3000"
environment:
- NODE_ENV=production
- DATABASE=node-crud
- USERNAME=postgres
- PASSWORD=postgres
- HOST=postgres
networks:
- simple-network
depends_on:
- postgres
client:
container_name: client
image: client
restart: unless-stopped
build:
context: simple-client-list
dockerfile: Dockerfile
ports:
- "4200:4200"
networks:
- simple-network
depends_on:
- api
- postgres
pgadmin:
container_name: pgadmin
image: dpage/pgadmin4
environment:
PGADMIN_DEFAULT_EMAIL: "leaosomogyi@hotmail.com"
PGADMIN_DEFAULT_PASSWORD: "PgAdmin2020!"
ports:
- "15432:80"
depends_on:
- postgres
networks:
- simple-network