Skip to content

Commit

Permalink
Add instructions for arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
bchapuis authored Sep 16, 2024
1 parent 8553b6a commit 8f583e2
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/pages/documentation/getting-started/installing-postgis.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,18 @@ docker run \
-d postgis/postgis:latest
```

On a mac, you may prefer an image optimized for arm64:

```
docker run \
--name baremaps \
--publish 5432:5432 \
-e POSTGRES_DB=baremaps \
-e POSTGRES_USER=baremaps \
-e POSTGRES_PASSWORD=baremaps \
-d kartoza/postgis:16-3.4
```

You can then stop and start the container with the following commands:

```
Expand Down

0 comments on commit 8f583e2

Please sign in to comment.