-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.insiders.yml
More file actions
34 lines (33 loc) · 1.3 KB
/
compose.insiders.yml
File metadata and controls
34 lines (33 loc) · 1.3 KB
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
# This file is only used to pre-build room images with custom names expected by the backend
# We never run these services with docker compose
services:
insider-node:
image: ghcr.io/gibitop/interview-platform-insider-node:latest
build:
context: ./insider
dockerfile: ../dockerfiles/insider-node.Dockerfile
args:
PERSISTENCE_DIRECTORY_PATH: $INSIDER_PERSISTENCE_DIRECTORY_PATH
WORKING_DIRECTORY: $INSIDER_WORKING_DIRECTORY
START_ACTIVE_FILE_NAME: $INSIDER_START_ACTIVE_FILE_NAME
insider-java:
image: ghcr.io/gibitop/interview-platform-insider-java:latest
depends_on:
- insider-node
build:
context: ./insider
dockerfile: ../dockerfiles/insider-java.Dockerfile
insider-golang:
image: ghcr.io/gibitop/interview-platform-insider-golang:latest
depends_on:
- insider-node
build:
context: ./insider
dockerfile: ../dockerfiles/insider-golang.Dockerfile
insider-python3:
image: ghcr.io/gibitop/interview-platform-insider-python3:latest
depends_on:
- insider-node
build:
context: ./insider
dockerfile: ../dockerfiles/insider-python3.Dockerfile