1
0
mirror of synced 2025-12-30 03:02:21 -05:00
Files
airbyte/docker-compose.debug.yaml
Benoit Moriceau e20d98fe0a Custom auto-setup temporal docker image (#7681)
This is a custom auto-setup script for the temporal environment. Unfortunately there is no other way properly update the DB without copy pasting parts of the temporal auto-setup script. Ideally temporal would provide a dedicated container for it DB but it is not the case right now.
2021-11-10 14:32:36 -08:00

24 lines
644 B
YAML

# Adds ports to the db and access to the temporal UI for debugging purposes.
# Expected to be used like this:
# VERSION=dev docker-compose -f docker-compose.yaml -f docker-compose.debug.yaml up
version: "3.7"
x-logging: &default-logging
options:
max-size: "100m"
max-file: "5"
driver: json-file
services:
db:
ports:
- 8011:5432
airbyte-temporal-ui:
image: temporalio/web:1.13.0
logging: *default-logging
container_name: airbyte-temporal-ui
restart: unless-stopped
environment:
- TEMPORAL_GRPC_ENDPOINT=airbyte-temporal:7233
- TEMPORAL_PERMIT_WRITE_API=true
ports:
- 8012:8088