I'm currently trying to install python packages from a private gitlab repo. Unfortunately, I get problems with the credentials. Is there any way to install this
i have a simple application with react and typescript that display hello world on localhost:8080. When i run my application on command line it works and i see t
My Dockerfile contains the exact code as shown in the statworx website to build an image for a Shiny app. Whenever I run the following code however: # Base imag
I have seen a number of similar questions but none seem to represent exactly the issue I am facing. When I create a folder structure as follows: ./ ./src ./src/
I'm trying to run my php-based application, which connects to a mysql DB, launched through docker-compose. i get this message when i connect to localhost: Fatal
I have a Dockerfile using which I am trying to build an image. I wish to have multiple inputs fetched from the user from STDIN, when the build runs. To get star
I have 3 simple docker files. In every file I install python3 on the base image centos:7, oraclelinux:7-slim and alpine:latest. The python3 installation process
I have a Dockerfile as below: FROM jenkins/jenkins:latest USER root RUN whoami USER jenkins RUN whoami and this docker-compose file version: '2' services:
I try to build an image with Docker (10.20.13 on RH 7.9). But some of my resources are outside the Dockerfile directory. Below is my tree : /dir1 ├─
This is my Docker Compose file containing 4 api containers: version: '3.4' services: api1.api: image: ${DOCKER_REGISTRY-}api1 build: context: .
Is there anyway to have docker create output the evaluated line? for example # Dockerfile COPY ${SRC}/file . will echo Step 1/1 COPY ${SRC}/file . I want it to
I am trying to run parse dashboard via the following docker-compose.yml: version: '3' services: mongo: image: mongo ports: - 27017:27017 vo
I am learning Docker and have a little confusion that I would greatly appreciate some advice on. When creating a new rails application. Following the guidelines
What I'm trying to do is have Docker run a TomEE 8.0.0 application with Maven. However when compiling the application, it gives me the error from the title no m
I tried to build a docker image with the following command: docker build -< Dockerfile I did it in the mail directory of the app. I found this command somewh
I have running multiple containers separately which connected to each other using defined network in docker-compose.yml and my application is
parent_folder / subfolder1 / subsubfolder1/ a.py b.py subsubfolder2/ c.py d.py e.py subfolder2 / subsubfolder2/ f.py g.py subfolder3 / h.py i.py g.py I want to
My project structure: projectRoot/ - service/ - data.json - Dockerfile In that Dockerfile : FROM node:16.14-alpine3.14 ENV THE_DATA=/tmp/data.js
Docker version: my base_image with multiple architecture:  Dockerfile: I use FROM --platform=linux/arm64 ${base_image} to force use the arm64 image bu
I started my Symfony 6 project with Docker successfully. I have a problem when accessing the PHP container and trying to run php bin/console doctrine:migrations