forked from rudderlabs/rudder-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
52 lines (51 loc) · 1.2 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
version: "3.7"
services:
db:
image: postgres:15-alpine
env_file:
- build/docker.env
ports:
- "6432:5432"
backend:
build:
context: ./
dockerfile: Dockerfile
depends_on:
- db
- transformer
entrypoint: sh -c '/wait-for db:5432 -- ./rudder-server'
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
transformer:
image: "rudderstack/rudder-transformer:latest"
ports:
- "9090:9090"
minio:
image: minio/minio
profiles:
- storage
ports:
- "9000:9000"
- "9001:9001"
environment:
- MINIO_ROOT_USER=root
- MINIO_ROOT_PASSWORD=password
command: server --console-address :9001 /data
etcd:
image: docker.io/bitnami/etcd:3
profiles:
- multi-tenant
environment:
- ALLOW_NONE_AUTHENTICATION=yes
- ETCD_NAME=etcd
- ETCD_LISTEN_CLIENT_URLS=http://0.0.0.0:2379
- ETCD_ADVERTISE_CLIENT_URLS=http://mode-provider:2379
ports:
- "2379:2379"