Skip to content

Commit cbf268a

Browse files
authored
add docker-compose debug extension (#6451)
* add docker-compose.debug.yaml * use unique host ports
1 parent f308690 commit cbf268a

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

docker-compose.debug.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
ports:
23+
- 8012:8088

0 commit comments

Comments
 (0)