-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
45 lines (41 loc) · 817 Bytes
/
docker-compose.yml
File metadata and controls
45 lines (41 loc) · 817 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
45
services:
frontend:
build: ./frontend
ports:
- "5173:3000"
volumes:
- ./frontend:/app
- frontend_node_modules:/app/node_modules
environment:
- CHOKIDAR_USEPOLLING=true
env_file: .env
depends_on:
- backend
backend:
build: ./backend
ports:
- "5000:5000"
volumes:
- ./backend:/app
- ./data:/data
environment:
- LTM_DIR=/data/ltm
env_file: .env
depends_on:
- redis
- postgres
redis:
image: redis:alpine
ports:
- "6380:6379"
postgres:
image: postgres:15-alpine
environment:
POSTGRES_DB: plotark
POSTGRES_USER: plotark
POSTGRES_PASSWORD: plotark
volumes:
- postgres_data:/var/lib/postgresql/data
volumes:
postgres_data:
frontend_node_modules: