Category "docker"

How to solve Failed to connect to the bus error on running puppeteer with docker

We are running puppeteer with docker and whenever it get a new request to run the script we are getting the following error: Failed to connect to the bus: Faile

After I run docker compose up, my mac returns error stating that it can't find my mix phx.server. How do I show docker where my mix.exs file is?

When I'm running Docker Compose up, I receive an error ** (Mix) The task "phx.server" could not be found Note no mix.exs was found in the current directory I b

Docker Container DB dont show up

Hello currently I get in touch with Docker. I am doing their getting started and I ran into a problem which I cant solve and I dont understand why it dont work.

Docker "Invalid mount path app/symfony" must be absolute

Im trying to setup Webpack to run with docker. I'm looking to put it in its own container, build the files and then nginx will serve that produced code on its c

Can not find table using NoSQL Workbench for DynamoDB when connecting to DynamoDB Docker

I've started DynamoDB in Docker: docker run --network xxx --name dynamodb -d -p 8000:8000 amazon/dynamodb-local I've created a table: aws dynamodb create-table

500 (Internal Server Error) with Laravel & Docker [duplicate]

I create Laravel PHP application in Docker. First I setup Laravel app using laravel new laravelDockerApp it creates successfully.I verify

Docker-compose.yml file that builds a base image, then children based on it?

For clarification, when I say base image, I mean the parent image that has all the common configurations, so that the children based on it don't need to downloa

Busybox wget to download jar fails with an error "wget: server returned error: HTTP/1.1 307 Temporary Redirect"

I am using adoptopenjdk/openjdk11:alpine-jre base image for java and trying below instruction inside my Dockerfile, RUN wget -O dd-java-agent.jar "https://repos

Docker/windowsfilter takes huge amount of diskspace

I am using docker for windows and I noticed my c drive was getting full. When i looked I noticed that there is 15 gb of data here: Docker/windowsfilter. I use d

How to easily debug Redis and Django/Gunicorn when developing using Docker?

I'm not referring to more sophisticated debugging techniques, but how to get access to the same kind of error messages that are normally directed to terminal ta

Crate p12 rust - Error [E0599]: no method name `decrypt_padded_vec`found for struct `Decryptor` - in docker build

my docker builds started failing today and I can't seem to figure out exactly how to fix it. Compiling locally is still working. When I try to create a containe

Updating Path multiple times in the same RUN command

Consider the following Dockerfile. On the last lines, first git is installed, and then something is appended to the path environment variable. FROM mcr.microsof

Can't get a Java heapdump from a docker container

My Java process is stuck and hogging a lot of CPU on the VM. I am trying to get to the root of the issue by getting a heapdump. This process is running in a doc

Docker custom user Permission Denied, while accessing container's file system

I've created a custom user using my Dockerfile. Here is my Dockerfile: FROM python:3.7-alpine3.10 # Make /opt/ working directory in docker container. WORKDIR /

How to fix "InternalError: variable not found in subplan target list"

I have a legacy Django project (django-1.1.29) and some tests in pytest (pytest-4.3.0), all running inside Docker. The database is PostgreSQL 10 and is a docker

How to connect locally hosted MySQL database with the docker container

Through docker-compose.yml I am able to run the application. Now we want to move the application to production, But we don't want to use the container database.

Docker build error duplicates of file paths not supported

This is my Dockerfile codes: FROM node:16.10-alpine3.12 as base RUN apk update RUN apk add git WORKDIR /app COPY package.json . FROM base as builder RUN npm i

Building from Dockerfile and getting "The following signatures couldn't be verified because the public key is not available: NO_PUBKEY"

I'm trying to build a PHP 5.3/Apache for local use using a Dockerfile that starts: FROM php:5.3-apache RUN apt-get update && \ apt-get install -y \

Containerized Keycloak behind Nginx not working (502 Bad Gateway)

I need to serve containerized keycloak behind Nginx. Keycloak runs without any problem at 'localhost:8080' but when I try to access it through the reverse proxy

resolve docker network alias from multiple networks

Consider following scenario. I have 2 containers on 2 different networks with the same alias app. $ docker network create net1 $ docker network create net2 $ do