Skip to content

Commit

Permalink
fix ports for docker and docker compose in installation guide
Browse files Browse the repository at this point in the history
  • Loading branch information
HarshCasper committed Sep 16, 2024
1 parent a25702d commit 37086ea
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion content/en/getting-started/installation/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ To start the Snowflake Docker container using the `docker` CLI, execute the foll
{{< command >}}
$ docker run \
--rm -it \
-p 4566:4566 \
-p 127.0.0.1:4566:4566 \
-p 127.0.0.1:4510-4559:4510-4559 \
-p 127.0.0.1:443:443 \
-e LOCALSTACK_AUTH_TOKEN=${LOCALSTACK_AUTH_TOKEN:?} \
localstack/snowflake
{{< / command >}}
Expand All @@ -66,6 +68,8 @@ services:
image: localstack/snowflake
ports:
- "127.0.0.1:4566:4566"
- "127.0.0.1:4510-4559:4510-4559"
- "127.0.0.1:443:443"
environment:
- LOCALSTACK_AUTH_TOKEN=${LOCALSTACK_AUTH_TOKEN:?}
volumes:
Expand Down

0 comments on commit 37086ea

Please sign in to comment.