forked from rudderlabs/rudder-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
41 lines (40 loc) · 952 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
41
version: "3.7"
services:
db:
image: postgres:11-alpine
env_file:
- build/docker.env
ports:
- "6432:5432"
backend:
depends_on:
- db
- d-transformer
build:
context: ./
dockerfile: build/Dockerfile
entrypoint: sh -c './build/wait-for db:5432 -- go run main.go'
ports:
- "8080:8080"
env_file:
- build/docker.env
environment:
- JOBS_DB_HOST=db
# Uncomment the following lines to mount workspaceConfig file
# volumes:
# - <absolute_path_to_workspace_config>:/etc/rudderstack/workspaceConfig.json
d-transformer:
build:
context: ./rudder-transformer/
dockerfile: Dockerfile
ports:
- "9090:9090"
# minio:
# image: minio/minio
# ports:
# - "9000:9000"
# - "9001:9001"
# environment:
# - MINIO_ROOT_USER=root
# - MINIO_ROOT_PASSWORD=password
# command: server --console-address :9001 /data