Skip to content

Commit

Permalink
add docker-compose debug extension (airbytehq#6451)
Browse files Browse the repository at this point in the history
* add docker-compose.debug.yaml

* use unique host ports
  • Loading branch information
jrhizor authored Sep 28, 2021
1 parent f308690 commit cbf268a
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions docker-compose.debug.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# 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:latest
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

0 comments on commit cbf268a

Please sign in to comment.