Skip to content

Commit

Permalink
Change exposed ports to avoid possible conflicts, based on last pr (#67)
Browse files Browse the repository at this point in the history
In the previous PR
(#65), xiaojin gave a
suggestion on the hive container ports, +10000 to avoid conflicts. So I
raised this PR. Has tested in my local desktop, it has no impacts on the
playground.

Related issue is:
#60
  • Loading branch information
shaofengshi authored Aug 23, 2024
1 parent fd68dd2 commit cfd29f3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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

0 comments on commit cfd29f3

Please sign in to comment.