forked from Netwalls/BOXMEOUT_STELLA
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (37 loc) · 742 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
42 lines (37 loc) · 742 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
version: '3.9'
services:
postgres:
image: postgres:15-alpine
restart: unless-stopped
environment:
POSTGRES_USER: boxmeout
POSTGRES_PASSWORD: boxmeout
POSTGRES_DB: boxmeout
ports:
- '5432:5432'
volumes:
- postgres_data:/var/lib/postgresql/data
redis:
image: redis:7-alpine
restart: unless-stopped
ports:
- '6379:6379'
backend:
build: ./backend
restart: unless-stopped
depends_on:
- postgres
- redis
env_file: ./backend/.env
ports:
- '3001:3001'
frontend:
build: ./frontend
restart: unless-stopped
depends_on:
- backend
env_file: ./frontend/.env
ports:
- '3000:3000'
volumes:
postgres_data: