Skip to content

Commit

Permalink
fix ports for docker and docker compose in installation guide (#46)
Browse files Browse the repository at this point in the history
* fix ports for docker and docker compose in installation guide

* change container name in docker compose
  • Loading branch information
HarshCasper authored Sep 16, 2024
1 parent a25702d commit f7788cc
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions 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 @@ -62,10 +64,12 @@ version: "3.8"

services:
localstack:
container_name: "localstack-main"
container_name: "localstack-snowflake"
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 f7788cc

Please sign in to comment.