
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. …
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 …
How does "restart: always" policy work in docker-compose?
Nov 23, 2017 · The problem is that restart: always policy does not seem to work when I kill the container (simulating app crash using docker kill) and docker-compose does not restart my container, even …
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 …
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
ubuntu - What default PostgreSql password? - Server Fault
May 28, 2019 · What that actually means is that in order correctly connect to PostgreSQL you must be logged in as the correct OS user that was used to install it. You practically authenticate with the OS …
postgresql - Postgres in a docker container not working - constantly ...
Jun 22, 2017 · Postgres in a docker container not working - constantly restarting Ask Question Asked 8 years, 6 months ago Modified 6 years, 10 months ago
postgresql - Docker Service Postgres migrate 9.6-alpine data to 13.2 ...
Mar 26, 2021 · I upgraded a while back from docker service postgres 9.5 to 9.6-alpine but cannot seem to get 9.6-alpine upgraded to 13.2-alpine. Steps taken so far without success.
debian - Docker: error could not translate host name to address: Name ...
May 24, 2022 · The problem is that you are running init_anon.sh at the build phase. At that point there is no hostname of the container in /etc/hosts, and the postgresql server is not even running. You can …
Connecting to hosts postgresql from django app running in a docker ...
Nov 25, 2022 · I am trying to connect to my hosts postgresql server (version 14) from my django app running in a docker container. here are my settings docker-compose.yml: version: '3' services: web: …