About 486,000 results
Open links in new tab
  1. postgresql - Postgres Docker- How to enable postgres docker to allow ...

    Sep 8, 2018 · Postgres Docker- How to enable postgres docker to allow remote connections? Ask Question Asked 7 years, 4 months ago Modified 5 years, 5 months ago

  2. Docker PostgreSQL change database encoding to UTF-8

    Aug 16, 2021 · I want to run via docker-compose a postgres container which has COLLATE and CTYPE 'C' and database encoding 'UTF-8'. But this looks to be impossible. This is the part on the docker …

  3. Unable to connect to local postgres docker container

    I am trying to troubleshoot a connection issue between my postgres client and my postgres docker container (locally). To start my docker container I ran the following command: docker run -d --name

  4. Docker Container time & timezone (will not reflect changes)

    Apr 15, 2015 · >docker run -it ubuntu:trusty /bin/bash #dpkg-reconfigure tzdata (follow prompts to select my timezone) >docker commit [container-id] chocko/ubuntu:local Then I updated my Dockerfiles to …

  5. postgresql - How to pass server configuration to postgres docker via a ...

    Mar 20, 2023 · I am using Postgres docker 14.4. I want to pass a server configuration (let's say idle_session_timeout) to the postgres docker. The doc gives an example using docker run docker …

  6. debian - Docker: error could not translate host name to address: Name ...

    May 24, 2022 · Docker: error could not translate host name to address: Name or service not known in psql Ask Question Asked 3 years, 7 months ago Modified 3 years, 7 months ago

  7. docker - Why does my container not contain DB data after I commit it ...

    Jun 28, 2021 · I'm trying to create a PostgreSQL container that already contains development data. I can see the data I have created, but when I commit, push, and pull the image, the data is not there. …

  8. Picking up environment variables that have been set in docker …

    Oct 31, 2023 · I have a postgres service in a docker compose file. However, this service is not based directly on the postgres image. It is based on a dockerfile that builds on the postgres image. This …

  9. MEMORY spikes issue on Ubuntu server + Docker - Server Fault

    Mar 18, 2024 · These are all managed through a docker-compose setup. In PostgreSQL, there are a couple of tables where INSERTS occur frequently throughout the day, with DELETES happening …

  10. Database Is lost when Docker Container is stopped. How to recover?

    The docker volume driver is not persisting your data between restarts of services. You can use the local-persist driver ; I have used this several times for this use case. When you already have the data …