-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
44 lines (42 loc) · 924 Bytes
/
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
version: '3.7'
services:
postgres-db:
container_name: postgres-db
image: postgres:alpine
restart: always
ports:
- 5432:5432
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=edge
logging:
options:
max-size: 10m
max-file: "3"
volumes:
- postgres-data:/var/lib/postgresql/data
networks:
- internal-network-postgres-db
app:
container_name: application
build:
context: .
dockerfile: Dockerfile
ports:
- '3001:3001'
- '3000:3000'
environment:
- DATABASE_URL=postgresql://postgres:postgres@postgres-db:5432/edge?schema=public
- JWT_SECRET=batman
depends_on:
- postgres-db
links:
- postgres-db
networks:
- internal-network-postgres-db
volumes:
postgres-data:
networks:
internal-network-postgres-db:
driver: bridge