forked from gooddata/gooddata-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
46 lines (40 loc) · 1.24 KB
/
docker-compose.yaml
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
# (C) 2022 GoodData Corporation
# docker-compose.yaml is dedicated to testing. All the tests are expected to be passing
# against this docker compose.
version: '3.7'
services:
gooddata-cn-ce:
# Use stable releases represented by tags like 1.5
image: gooddata/gooddata-cn-ce:1.5
ports:
- "3000:3000"
- "5432:5432"
volumes:
- gooddata-cn-ce-data:/data
environment:
LICENSE_AND_PRIVACY_POLICY_ACCEPTED: "YES"
APP_LOGLEVEL: "INFO"
gooddata-fdw:
build:
context: .
dockerfile: gooddata-fdw/Dockerfile
ports:
- "2543:5432"
environment:
POSTGRES_DB: gooddata
POSTGRES_USER: gooddata
POSTGRES_PASSWORD: "${POSTGRES_PASSWORD-gooddata123}"
command: ["postgres", "-c", "shared_preload_libraries=foreign_table_exposer", "-c", "log_statement=all", "-c", "client_min_messages=DEBUG1", "-c", "log_min_messages=DEBUG1"]
upload-layout:
build:
context: .
dockerfile: tests-support/Dockerfile
volumes:
- ./tests-support/fixtures:/app/fixtures
environment:
FIXTURES_DIR: /app/fixtures
HOST: "http://gooddata-cn-ce:3000"
HEADER_HOST: localhost
command: ["python3", "upload_demo_layout.py"]
volumes:
gooddata-cn-ce-data: