Skip to main content

Questions tagged [postgresql]

For questions about PostgreSQL, an open-source object-relational database system (RDBMS).

Filter by
Sorted by
Tagged with
0 votes
1 answer
36 views

I want to separate the database initialisation from the actual runtime of PostgreSQL in a Docker Compose project. The Docker official PostgreSQL image (I'm using postgres:18-alpine) automatically runs ...
Kusalananda's user avatar
2 votes
1 answer
62 views

I am working on a Kubernetes-based solution to host dozens of PHP websites (with future compatibility for Python/Node) using PostgreSQL as the database. The goal is to provide an environment similar ...
mapedraza's user avatar
1 vote
1 answer
62 views

I have a host machine running a postgresql docker container listening and exposing port 5432 on the host. I had a set of scripts that upload a large set of records from a CSV using PySpark and ...
Philoxopher's user avatar
0 votes
1 answer
805 views

I have a Docker Compose setup for a PostgreSQL container like below: version: '3' services: #PostgreSQL Service um-db: image: postgres:15 container_name: um-db tty: true ports: ...
Sandeep Dhakal's user avatar
1 vote
2 answers
484 views

I have the following situation: I have a remote server that runs docker with a Postgres container. The Postgres instance is only reachable through a docker network, not directly from the remote server....
Tiim's user avatar
  • 21
1 vote
1 answer
507 views

We have deployed a PostgreSQL with crunchydata operator. We followed the link https://access.crunchydata.com/documentation/postgres-operator/v5/quickstart/#connect-using-a-port-forward and connected ...
igiannak's user avatar
  • 220
4 votes
2 answers
894 views

What are the basic skills and requirements a DevOps candidate should have when working with PostgreSQL? How to monitor it, deploy, etc.?
Дмитрий's user avatar
1 vote
1 answer
3k views

Is it possible to autoscale a Postgres Database using Kubernetes ? I usually run a Docker container with very specific settings to install a postgres database for my application. Does using Kubernetes ...
GauravEdekar's user avatar
0 votes
1 answer
2k views

Using COPY table FROM PROGRAM 'curl "www.example.com/data.csv"'; I am able to copy a CSV directly from the web into a psql table. However, when I am running the same command from inside a ...
sir_olf's user avatar
2 votes
1 answer
303 views

I want to see the value of default_statistics_target on postgresql before running SET default_statistics_target=1000 Its most likely the default (100) but would like to see it. Where it can be ...
hvannia's user avatar
  • 31
3 votes
1 answer
731 views

I'm wanting to deploy some sort of connection pooling within my applications across multiple nodes. Python naturally provides some pooling with the SQLAlchemy implementation; but obviously this ...
Callam Delaney's user avatar
0 votes
1 answer
1k views

I'm trying to connect from a node app container to a postgresql container using docker-compose but I'm not able to do it. This is my docker-compose.yml file: version: '3.7' services: db: image: ...
Alessandro Rodríguez's user avatar
1 vote
1 answer
95 views

postgres: image: healthcheck/postgres:alpine environment: POSTGRES_USER: postgres What is the default user of postgresql? How does hardcoding the postgres user improve security? What special rights ...
omar amine's user avatar
6 votes
1 answer
12k views

I have a docker-compose script which starts a Postgres container and an app container like so db: image: postgres:10.6 restart: always ports: - 5432:5432 app: image: test_app:latest ...
Madden's user avatar
  • 223
1 vote
1 answer
3k views

I am working on testing a method for postgres 9.3 to 10 upgrade. I currently am at the dry run phase and ran into a few issues. The current blocking one is lc_collate values for database "postgres" do ...
user avatar
0 votes
1 answer
88 views

As the title says I am working on planning a way to backup postgres using chef and vault. Idea is that we already encrypt the backups from postgres using a key (random binary string) and we would like ...
user avatar