-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
45 lines (40 loc) · 1010 Bytes
/
docker-compose.yml
File metadata and controls
45 lines (40 loc) · 1010 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
version: '3.8'
services:
backend:
build: ./backend
ports:
- "3000:3000"
environment:
- DATABASE_URL=postgresql://postgres:password@db:5432/codeclash
depends_on:
- db
volumes:
- ./backend:/app
- /app/node_modules
# frontend:
# build: ./frontend
# ports:
# - "5173:5173"
# volumes:
# - ./frontend:/app
# - /app/node_modules
#TODO IMPORTANT return this when we want to containerise the front end for deployment
db:
image: postgres:15-alpine
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
POSTGRES_DB: codeclash
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
- ./database/init.sql:/docker-entrypoint-initdb.d/init.sql
# judge0:
# image: judge0/judge0:latest
# ports:
# - "2358:2358"
# privileged: true
#TODO IMPORTANT return this when we want to start implementing code execution
volumes:
postgres_data: