-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
40 lines (40 loc) · 930 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
version: '3'
services:
auth:
build:
context: .
dockerfile: ./cmd/auth/Dockerfile
container_name: uhkevin/noob-auth
image: uhkevin/noob-auth
ports:
- "8080:8080"
frontend:
build:
context: .
dockerfile: ./cmd/frontend/Dockerfile
container_name: uhkevin/noob-frontend
image: uhkevin/noob-frontend
ports:
- "8080:8080"
problems:
build:
context: .
dockerfile: ./cmd/problems/Dockerfile
container_name: uhkevin/noob-problems
image: uhkevin/noob-problems
ports:
- "8080:8080"
submissions:
build:
context: .
dockerfile: ./cmd/submissions/Dockerfile
container_name: uhkevin/noob-submissions
image: uhkevin/noob-submissions
ports:
- "8080:8080"
executor:
build:
context: .
dockerfile: ./cmd/executor/Dockerfile
container_name: uhkevin/noob-executor
image: uhkevin/noob-executor