skip to Main Content

Docker and Postgresql with mounted (local): chown: changing ownership of '/var/lib/postgresql/data/pgdata': Permission denied

I am using the following standard to mount a local volume into my postgres container as described here: https://hub.docker.com/_/postgres $ docker run -d --name some-postgres -e POSTGRES_PASSWORD=mysecretpassword -e PGDATA=/var/lib/postgresql/data/pgdata -v /custom/mount:/var/lib/postgresql/data postgres It worked well for months but since the…

VIEW QUESTION

Custom localstack docker image

In order to speed up my integration tests execution, I'd like to have a custom localstack pro container with some aws resources already created. Basically I start a docker compose file with the below configuration, run some awslocal and tflocal…

VIEW QUESTION
Back To Top
Search