
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 …
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 …
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. …
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 …
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, 3 months ago Modified 5 years, 5 months ago
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
ubuntu - What default PostgreSql password? - Server Fault
May 28, 2019 · docker run --name some-postgis -e POSTGRES_PASSWORD=mysecretpassword -d mdillon/postgis And now wnat to enter in psql: su postgres ANd i just can not login. I always thoght …
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 …
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
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 …