skip to Main Content

Debian – readlink: unrecognized option: m

I have the following Dockerfile. FROM debian:10.7 ARG DEBIAN_FRONTEND=noninteractive RUN echo "Acquire::http::Proxy "${HTTP_PROXY}";" >> /etc/apt/apt.conf.d/50proxy && echo "Acquire::https::Proxy "${HTTPS_PROXY}";" >> /etc/apt/apt.conf.d/50proxy # Install coreutils, dialog, apt-utils since busybox seems to lack them RUN apt-get update && apt-get install -y coreutils…

VIEW QUESTION

Can I rename the original image in docker-compose?

My Configuration My docker-compose.yml looks like this with some config for backend etc..., but I need some changes for db service. version: '3.6' services: db: container_name: db-${STAGE:-dev} image: postgres:14.0-alpine volumes: - postgres_data:/var/lib/postgresql/data/ ports: - "5432:5432" env_file: - .env.${STAGE:-dev} I don't…

VIEW QUESTION
Back To Top
Search