Replies: 2 comments 1 reply
-
You are trying to connect to PostgreSQL running on localhost from inside the docker. In theory, the
and run If I remember correctly, Martin doesn't actually use |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hello, thank you for the reply. docker run \
--rm -it \
--net=host \
-e DATABASE_URL=postgresql://postgres:postgres@localhost:5432/localgis \
postgres bash and then psql $DATABASE_URL I get the following error:
Is this a docker-related issue? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I'm trying to run martin on MacOS Sonoma 14.4.1, by following the guide provided.
I have tried to run
export PGPASSWORD=postgres docker run \ --net=host \ -p 3000:3000 -e PGPASSWORD \ -e DATABASE_URL=postgresql://postgres@localhost:5432/localgis \ ghcr.io/maplibre/martin
all I get is the following error:
I have also installed martin using homebrew and it is working perfectly:
Of course, I can provide some more logs... if properly instructed :)
Beta Was this translation helpful? Give feedback.
All reactions