Skip to main content
The 2024 Developer Survey results are live! See the results

All Questions

1 vote
0 answers
9 views

Parse Platform dashboard unauthorized when accessing the parse-server

What are the possible problems that is causing {"error":"unauthorized"} in the Parse Dashboard when accessing the dashboard is accessing: http://192.168.2.10:1337/parse/serverInfo ...
quarks's user avatar
  • 34.7k
0 votes
0 answers
24 views

Postgres Docker container does not start with a custom shell script

I have a docker-compose file with a Postgres image. The service definition is as follows: services: postgres: image: postgres:latest container_name: postgres volumes: - "{{ ...
Lukas Müller's user avatar
0 votes
0 answers
23 views

Database does not exist docker image Npgsql.PostgresException (0x80004005): 3D000: database "CatalogDb" does not exist

I am trying to connect to postgres database running on docker container from visual studio, I am sure the DB exists and here is the logs: docker ps: docker ps CONTAINER ID IMAGE COMMAND ...
Mocak's user avatar
  • 11
0 votes
2 answers
28 views

Error: P1000: Authentication failed against database server at `localhost`, the provided database credentials for `postgres` are not valid

api git:(main) ✗ pnpm prisma migrate dev Environment variables loaded from .env Prisma schema loaded from prisma/schema.prisma Datasource "db": PostgreSQL database "postgres", ...
Jaskaran Singh's user avatar
0 votes
1 answer
31 views

How to use other services when using the airflow docker image?

I am just starting with airflow. I took a course in which the teacher used an unofficial image of airflow: puckel/docker-airflow together with other images of jupyter, postgres and minio in a docker-...
KansaiRobot's user avatar
  • 9,123
-1 votes
1 answer
54 views

Docker volume is cleared on every restart via docker-compose on ubuntu [closed]

Docker volume is cleared on every restart via docker-compose on ubuntu server, but on my pc everything works properly. Volume always contains data, even after restart. How to solve this? Thanks. My ...
silenzzz's user avatar
  • 123
0 votes
0 answers
19 views

Error with Docker Compose: FATAL: data directory "/var/lib/postgresql/data" has invalid permissions [duplicate]

When i try to run docker compose up -d i got this error: FATAL: data directory "/var/lib/postgresql/data" has invalid permissions DETAIL: Permissions should be u=rwx (0700) or u=rwx,g=rx (...
zouker's user avatar
  • 33
0 votes
1 answer
19 views

postgres database connected but table relations not found when running nodejs typescript api in a docker container

i wrote a basic api with typescript in nodejs which runs fine when started with the start script "node dist/index.js", but after dockerizing it, the database seems to have been connected ...
Aditi Polkam's user avatar
1 vote
0 answers
22 views

ConnectionRefusedError: [Errno 111] Connection refused. Docker, Python [duplicate]

I made a fastapi, alembic, postgres, sqlalchemy application, made a docker image, run http://127.0.0.1:8000/docs and try to create a user, but when sending a request I get the error ...
123 123's user avatar
  • 11
-1 votes
1 answer
46 views

Postgres db in docker-compose errors with auth error every 2-3 seconds

Every time I start my docker-compose on a server I get this error repeating once every 2-3 seconds. I haven't had this problem before (used this for 2-3 days). Once it just appeared out of nowhere and ...
Andrew's user avatar
  • 93
0 votes
2 answers
39 views

Error with creating a postgres db in Docker container

I have the following docker-compose file and when I ran docker-compose up -d --build, I got a message which indicated success. The logs did not have any exception printed. [+] Running 2/2 ✔ Container ...
Siraj Samsudeen's user avatar
0 votes
1 answer
33 views

Can't connect to remote PostgreSQL DB from docker-compose

I have the following compose.yaml: services: pg-local: image: postgres:14.7 volumes: - pgdata:/var/lib/postgresql/data env_file: - .env.local_postgres_docker_env ports: ...
Yoni Melki's user avatar
0 votes
0 answers
26 views

Docker run -> Docker compose

I am runnig postgressql in a docker container. I have succesfully run the following using docker run: docker run -it --rm --name postgres-master \ --net postgres \ -e POSTGRES_USER=postgres \ -e ...
mac's user avatar
  • 1,601
0 votes
1 answer
51 views

Can't use timescaledb functions inside docker compose

This is my docker compose: version: "3.6" services: postgres: image: timescale/timescaledb-ha:pg16.3-ts2.15.2-all restart: always environment: - ...
Ham Burg's user avatar
0 votes
0 answers
36 views

I can't connect and run spring boot + postgre in docker (org.postgresql.util.PSQLException: The connection attempt failed.)

This is my dockerfile #download the openjdk image FROM openjdk:17 # add argument to the docker image ARG JAR_FILE=target/*.jar COPY ${JAR_FILE} api-service.jar # run the jar file ENTRYPOINT ["...
Hieu_Tran's user avatar

15 30 50 per page
1
2 3 4 5
113