Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change exposed ports to avoid possible conflicts, based on last pr #67

Merged
merged 1 commit into from
Aug 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ The playground runs a number of services. The TCP ports used may clash with exis
| Docker container | Ports used |
|-----------------------|----------------------|
| playground-gravitino | 8090 9001 |
| playground-hive | 3307 9003 9084 50071 |
| playground-hive | 3307 19000 19083 60070 |
| playground-mysql | 13306 |
| playground-postgresql | 15342 |
| playground-trino | 18080 |
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ services:
image: datastrato/hive:2.7.3-no-yarn
ports:
- "3307:3306"
- "9003:9000"
- "9084:9083"
- "50071:50070"
- "19000:9000"
- "19083:9083"
- "60070:50070"
container_name: playground-hive
environment:
- HADOOP_USER_NAME=root
Expand Down