-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
52 lines (52 loc) · 1.16 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
version: '3.7'
services:
postgres-db:
container_name: upload-postgres
image: postgres:alpine
hostname: postgres-db
restart: always
ports:
- 5432:5432
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=postgres
- POSTGRES_DATABASE=postgres
- POSTGRES_HOST=postgres:postgres@postgres-db:5432
logging:
options:
max-size: 10m
max-file: "3"
volumes:
- './postgres-data/volume/bk:/bk'
- './postgres-data/volume/data:/var/lib/postgresql/data'
networks:
- network-upload
app:
container_name: upload-app
build:
context: .
dockerfile: Dockerfile
volumes:
- ./:/usr/src/app/
- /usr/src/app/node_modules
ports:
- '3001:3001'
- '5173:5173'
environment:
- POSTGRES_HOST=postgres-db
- POSTGRES_PORT=5432
- POSTGRES_DATABASE=postgres
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
depends_on:
- postgres-db
links:
- postgres-db
networks:
- network-upload
volumes:
postgres-data:
networks:
network-upload:
driver: bridge