Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
467 views

I am trying to train a classifier model. I am following instructions which outline to use the format bellow. whenever I go to then train my model, docker returns this error. I am unsure what I need to ...
user29722274's user avatar
0 votes
1 answer
150 views

I provide the central question which is the purpose of this post first, followed by the problem context. Please let me know if you want me to clarify anything or require more information. Question Why ...
MattSt's user avatar
  • 1,203
1 vote
0 answers
118 views

I'm trying to download a file from a Cloudflare R2 bucket using Wrangler on a Docker container and bunx but I keep getting errors that I believe are unrelated to Wrangler and might be related to how ...
Luiz E.'s user avatar
  • 7,349
1 vote
1 answer
406 views

In a Dockerfile, I am considering using both the --mount=type=cache and --no-cache-dir options together in a RUN instruction. For example: RUN --mount=type=cache,target=/root/.cache/pip pip install --...
h3110Fr13nd's user avatar
0 votes
1 answer
207 views

I'm trying to get some libraries out of a Docker image, since I temporarily need it in another environment. Since I need symlinks to persist through this, I'm trying to tar the directory and pipe it ...
Max N.'s user avatar
  • 1,215
0 votes
1 answer
99 views

This is my pc config. pegasus@pegasus:~$ uname -a Linux pegasus 6.8.0-36-generic #36-Ubuntu SMP PREEMPT_DYNAMIC Mon Jun 10 10:49:14 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux pegasus@pegasus:~$ cat /etc/...
NobinPegasus's user avatar
0 votes
1 answer
56 views

I have a laptop running Ubuntu 22.04, and a desktop computer running Ubuntu 24.04, within the same LAN. I would like to be able to attach a docker container running on the desktop, from the laptop. ...
Daniel Rossi's user avatar
0 votes
2 answers
820 views

I have a Dockerfile FROM eclipse-temurin:17-jre-alpine LABEL authors="sort-architectures" WORKDIR /app/kafka COPY ./kafka-3.5.1-src . CMD ls -lisa bin | grep kafka-s ENTRYPOINT ["...
camilajenny's user avatar
  • 5,256
1 vote
1 answer
2k views

I'm new to docker and I'm encountering an error when trying to run a Docker container and access its shell. I've built an image named "friendnet-client" successfully. The image sets up a ...
Haitam-Elgharras's user avatar
0 votes
1 answer
1k views

I'm encountering an issue while attempting to execute a git pull command within a Docker container. Here's the Dockerfile configuration: FROM ubuntu:latest RUN apt update RUN apt upgrade -y RUN apt ...
SANJAY SAGAR's user avatar
3 votes
0 answers
214 views

I have this code in my gitlab-ci.yml: stages: - build - test build_frontend: image: node:18.13.0 stage: build script: - npm install - npm run build artifacts: paths: - ...
Jeremy's user avatar
  • 83
0 votes
0 answers
32 views

FROM ubuntu RUN apt-get update && apt-get install -y figlet WORKDIR /app COPY scriptas.sh /app/scriptas.sh CMD figlet "NEDAS KAIRYS MKDF-23/1"&& chmod +x /app/scriptas.sh &...
user23122157's user avatar
0 votes
0 answers
606 views

Is there a way to run/create/launch a container from an image in VS Code (e.g., one I downloaded from Docker Hub), or do I need to do it from outside VS Code (e.g., docker run from the command-line, ...
Rob Bednark's user avatar
  • 28.8k
0 votes
0 answers
52 views

my request code is mocha framework, in local run using vs code, just npm run test by manually setting the proxy (export http_proxy=**), it could succeed to get 200 status code,, but the same failed at ...
Tony8879418's user avatar
1 vote
1 answer
641 views

I'm new to docker and following through their getting started tutorial in the docs. I'm currently at the part where I need to mount a volume in order to persist data between container reruns. But when ...
Echo's user avatar
  • 641
0 votes
1 answer
265 views

Is there a way for AWS credentials passed as environment variables to the docker run command to be put to use for getting the caller identity details while the container is running? This is the docker ...
Sandeep's user avatar
1 vote
3 answers
373 views

I don't know why, but I've installed docker using npm (i've installed the app too). I'm on a mac air M1 And when running any docker command (run), i've got this message (example with rabbitMQ): docker ...
user avatar
0 votes
0 answers
238 views

I am creating an elasticsearch image and want to run the container on some remote machine. Suppose the machine hostname is "abc.com", so I am accessing the URL as "abc.com:9200" to ...
Rohit Kundu's user avatar
1 vote
1 answer
316 views

If I have docker run ... -e VAR=x ... -e VAR=y ..., what is the value of VAR in the container? From a quick test it looks like the last one is used, but is this guaranteed anywhere in the ...
Alexey Romanov's user avatar
0 votes
0 answers
87 views

I have my Dockerfile setup for dbt-snowflake/dbt-core with all its prerequisites. I also created a group for that docker image and added some users to that group while writing a docker file. Incase, ...
Kaviiiiii's user avatar
0 votes
1 answer
1k views

please I really need help creating a docker volume. By default, when I create a volume, its location will be /var/lib/docker/volumes/ I need to change this default location to my SSD disk, ...
masch1na's user avatar
  • 127
0 votes
1 answer
27 views

I have a docker, DockerB, which is based on DockerA. I want to make sure that whenever DockerB is built (e.g. using docker build ... DockerB), it first builds DockerA and then builds DockerB. What is ...
Cashif Ilyas's user avatar
  • 1,745
0 votes
1 answer
199 views

For my course we have to run: docker run -p 6379:6379 –name some-redis -d redis:4.0.1 But when I run this command it says that its on invalid format. This class is a couple years old so I know things ...
Britnie Roach's user avatar
1 vote
0 answers
252 views

I am learning Docker and I am stuck with this permission issue. I have created a simple React app and created its image. Dockerfile I used Dockerfile: FROM node:alpine WORKDIR '/app' COPY package....
Vishal Gupta's user avatar
2 votes
1 answer
907 views

Can anyone explain why is the environment variable passed by docker run --rm -it -e APP_PORT=80 -p 8080:80 my_container <image-id> to CMD in Dockerfile is not resolved in following cases: ... ...
m19v's user avatar
  • 2,280

1
2 3 4 5