Category "docker"

Docker-Compose Building back unable to prepare context: unable to evaluate symlinks in Dockerfile path

I have the following dir structure: . ├── docker-compose.yml ├── README.md └── services ├─

Environment variables not defined in SSH AuthorizedKeysCommand (Docker)

I'm trying to make the private key SSH connection with LDAP. /etc/ssh/sshd_config AuthorizedKeysCommand /etc/ldap_ssh_authorized_keys.sh AuthorizedKeysCommandUs

Docker Image built on Mac OSX won't run on AWS EC2 instance

Image built on Mac OSX with M1 processor, deployed to an EC2 instance. But when scripts are run it yields the error: standard_init_linux.go:219: exec user proce

How can I create container in azurite running from test container in java?

I am trying to test azure file upload using azurite docker image from test container below is code I am using for the same public class AzureContainer { pu

Django +docker-compose + Celery + redis - How to use Redis deployed in my own remote server?

I have a Django app deployed in Docker containers. I have 3 config environnements: dev, preprod and prod. dev is my local environnement (localhost) and preprod/

How can I configure 2 docker compose files such that they use an existing service if it's already been pulled?

I frequently swap between different apps which use Docker, some of which are microservices that need to both be operational so I can't simply kill all of my con

docker-compose --context no output

docker-compose --context remote (up|dows|ps|...) doesn't do anything. although docker --context remote ps works, connects to the remote and lists the containter

I have a Java Spring boot with Postgresql within docker-compose, org.postgresql.util.PSQLException: Connection to localhost:5432

Caused by: org.postgresql.util.PSQLException: Connection to localhost:5432 refused. Check that the hostname and port are correct and that the postmaster is acce

Building a container image and re-using pulled layers

Suppose there is a container image published to a Docker registry, and I want to rebuild the image with modifications while re-using as many of the published la

dependencies reference nonexistent child node

I tried to dockerize my Wagtail Web Application and this error Occurred. I tried docker-compose build there was no errors. after that i tried docker-compose up

Hot Reloading Page in React 17.0.2 within a container doesn't work

If I run locally run start Everything works perfectly. After executing the command docker run -p 3000:3000 -v /app/node_modules -v ${pwd}:/app b88c46febae5 I ge

Appwrite succesfullyu installed but a new directory isnt created

I have installed Appwrite. But a new directory conating the docker-compose.yml and .env has not been created. The terminal is giving a sucess message. Docker i

Fetch secrets and certificates from AzureKeyVault inside Docker container

I have a .net framework console application. Inside this application, I'm fetching secrets and certificates from keyvault using tenantId, client Id and Client S

Install talib on docker

FROM python:3 USER root RUN apt-get update RUN apt-get -y install locales && \ localedef -f UTF-8 -i ja_JP ja_JP.UTF-8 RUN wget http://prdownloads

Docker blocked on NPM install - Socket Timeout

I have a simple Dockerfile which is running node, this is the configuration: FROM node:latest WORKDIR /usr/src/auth-starter-server COPY ./ ./ RUN npm install

docker desktop Preferences settings page is not loading and state is docker desktop is starting from forever

Main issue is docker desktop is not starting in mac & The status bar is showing docker desktop is starting but this process is not ending I tried system reb

Java web application not binding with Heroku $PORT

I have made a Java web application and trying to host it on Heroku with a Dockerfile, CMD as : CMD ["java", "-Dserver.port=$PORT", "-jar", "/usr/local/lib/backe

Can Docker CLI, Podman and other similar tools have shared local storage for images?

I recently started using podman and realized that images pulled via docker doesn't become available for use to podman and vice-versa. For example:- If I pull th

Image not rendering in Shiny Server in docker

Background I'm using another docker image and installing Shiny Server via commands in the dockerfile. The images are in a subdirectory named "www" in the app.R

How to get rid of Django security vulnerabilities warning signs in terminal

I have a simple Django project with a PostgreSQL backend and I can't seem to get rid of the Django security vulnerabilities warning signs on my terminal. Settin