skip to Main Content

Laravel – docker hangs at build

docker blocks when running the command: docker-compose build nginx php-fpm workspace mysql redis redis-webui adminer; gives the the following error: CACHED [workspace 50/116] RUN if [ false = true ]; then if [ 8.3 != "8.3" ] && [ 8.3…

VIEW QUESTION

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