We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f308690 commit cbf268aCopy full SHA for cbf268a
docker-compose.debug.yaml
@@ -0,0 +1,23 @@
1
+# Adds ports to the db and access to the temporal UI for debugging purposes.
2
+# Expected to be used like this:
3
+# VERSION=dev docker-compose -f docker-compose.yaml -f docker-compose.debug.yaml up
4
+version: "3.7"
5
+x-logging: &default-logging
6
+ options:
7
+ max-size: "100m"
8
+ max-file: "5"
9
+ driver: json-file
10
+services:
11
+ db:
12
+ ports:
13
+ - 8011:5432
14
+ airbyte-temporal-ui:
15
+ image: temporalio/web:latest
16
+ logging: *default-logging
17
+ container_name: airbyte-temporal-ui
18
+ restart: unless-stopped
19
+ environment:
20
+ - TEMPORAL_GRPC_ENDPOINT=airbyte-temporal:7233
21
+ - TEMPORAL_PERMIT_WRITE_API=true
22
23
+ - 8012:8088
0 commit comments