-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
44 lines (41 loc) · 857 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
44 lines (41 loc) · 857 Bytes
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.8"
services:
postgres:
image: postgres:15
platform: linux/amd64
restart: always
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: shoeco
ports:
- "5432:5432"
volumes:
- pgdata:/var/lib/postgresql/data
backend:
build: ./backend
environment:
DATABASE_URL: "postgres://postgres:postgres@postgres:5432/shoeco"
HTTPS_PORT: 3001
ports:
- "3001:3001"
- "5555:5555"
depends_on:
- postgres
volumes:
- ./backend:/app
- ./cert.pem:/app/cert.pem
- ./key.pem:/app/key.pem
command: npm start
frontend:
build: ./frontend
ports:
- "3000:3000"
depends_on:
- backend
#volumes:
#- ./frontend:/app
environment:
- CHOKIDAR_USEPOLLING=true
volumes:
pgdata: