Skip to content

Commit

Permalink
Update bind address to 0.0.0.0 for Docker (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
badrishc authored Mar 28, 2024
1 parent 521ec07 commit 795993d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ COPY --from=build /app .
EXPOSE 6379

# Run GarnetServer with an index size of 128MB
ENTRYPOINT ["/app/GarnetServer", "-i", "128m", "--port", "6379"]
ENTRYPOINT ["/app/GarnetServer", "-i", "128m", "--port", "6379", "--bind", "0.0.0.0"]
2 changes: 1 addition & 1 deletion Dockerfile.nanoserver-x64
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ COPY --from=build /app .
EXPOSE 6379

# Run GarnetServer with an index size of 128MB
ENTRYPOINT ["/app/GarnetServer.exe", "-i", "128m", "--port", "6379"]
ENTRYPOINT ["/app/GarnetServer.exe", "-i", "128m", "--port", "6379", "--bind", "0.0.0.0"]
2 changes: 1 addition & 1 deletion Dockerfile.ubuntu-x64
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ COPY --from=build /app .
EXPOSE 6379

# Run GarnetServer with an index size of 128MB
ENTRYPOINT ["/app/GarnetServer", "-i", "128m", "--port", "6379"]
ENTRYPOINT ["/app/GarnetServer", "-i", "128m", "--port", "6379", "--bind", "0.0.0.0"]

0 comments on commit 795993d

Please sign in to comment.