-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move the port forward outside of the main docker-compose (#17864)
- Loading branch information
1 parent
8560f19
commit 260ab6b
Showing
3 changed files
with
14 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# 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: | ||
airbyte-temporal: | ||
ports: | ||
- 7233:7233 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters