Questions tagged [docker-command]

52 questions
1
vote
1 answer

How to run TensorFlow Serving as an Azure Container Instance and pass a docker command

I usually run TensorFlow Serving Docker image using this command: docker run -p 8500:8500 \ --mount type=bind,source=/mnt/docker/models,target=/models \ --mount type=bind,source=/mnt/docker/configs/models.config,target=/models/models.config \ -t…
1
vote
1 answer

Unable to start the server using docker command - Mount directory -OCI Runtime error

I would like to start the orthanc server based on the below docker command. However when I execute the command, I get the error as shown below. Please note that both the orthanc.json and orthanc-db are present in the respective…
1
vote
2 answers

Issue running docker with command parameter using NPM scripts

I've got a repo with some NPM convenience scripts to run some basic docker commands: "scripts": { "build": "docker build -t myreadyapi --build-arg LICENSE_SERVER=1.1.1.1 .", "prestart": "npm run build", "start": "docker run -p…
Ryan.Bartsch
  • 3,698
  • 1
  • 26
  • 52
1
vote
1 answer

Certain Docker Commands not working in Windows Powershell ISE but working in other Command Line tools

I am exploring docker and I've been using Windows Powershell ISE to run docker commands. I have come across situation where I run certain commands in Powershell but they appear to be stuck, but when I run the same docker command on Command Prompt…
1
vote
1 answer

Unable to deploy the war in docker web-logic container

Created Docker image for Oracle-12.2.1.2.0 image created successfully and running also on https://localhost:9002/console. Now I want to deploy my war in this container, using following commands inside container for that - java weblogic.Deployer…
0
votes
2 answers

Docker-compose not building up successfully

On running docker-compose up -d --build I am getting the following error: PS C:\Users\KELLYRYAN\Documents\august-code\drf_course\drf_course> docker-compose up -d --build [+] Building 128.5s (11/18) => [api internal] load .dockerignore …
0
votes
0 answers

Unable to connect to Indy pool from webserver

I have a running indy_pool docker container with 4 nodes. I followed the article https://medium.com/@smaldeniya/setup-hyperledger-indy-pool-in-local-linux-environment-using-docker-304d13eb86dc to do this setup. Now, trying to create a webserver…
Soundarya
  • 153
  • 1
  • 2
  • 12
0
votes
1 answer

template parsing error: template: :1: unexpected "=" in operand

template parsing error: template: :1: unexpected "=" in operand I got the above error when executing the below command in Windows, docker inspect --format="{{range $key, $value := .Config.Env}}{{if eq (index (split $value "=") 0)…
Kushan Gunasekera
  • 7,268
  • 6
  • 44
  • 58
0
votes
1 answer

Why container stop after succeful registeration runner?

I want to register gitlab runner once in my docker-compose. yaml. I touch the command in command section to register in non interactive mode.Why container stop after succeful register runner? version: '3.6' volumes: …
0
votes
1 answer

How to see all Docker image tags?

Question about Docker Please tell me how to view the existing image tags through the console before pulling? Or the last 10? I've seen such a command before, but now I can't find it(
0
votes
0 answers

Cannot remove or stop docker container

I run a web using sudo docker compose up but it has a container that recreate infinitely. Therefor, I want to remove that container and build it again, but when I run sudo docker container rm f8df3e233d00 (f8df3e233d00 is ID of container that i…
LXT
  • 726
  • 1
  • 7
  • 18
0
votes
0 answers

Docker Content Trust

Why does this command not work for docker desktop: export DOCKER_CONTENT_TRUST=1 The command is used here: https://dockerlabs.collabnix.com/advanced/security/trust-basics/#enable_dct And in the offical documentation…
Tobias
  • 13
  • 3
0
votes
0 answers

OSError: Function not implemented - Odoo Docker - command: ["odoo","--dev","xml,reload"]

version: '3.4' services: db: image: postgres:13 ports: - "5432:5432" environment: - POSTGRES_DB=postgres - POSTGRES_PASSWORD=odoo - POSTGRES_USER=odoo - PGDATA=/var/lib/postgresql/data/db-files/ …
0
votes
1 answer

Docker Run Image Error no such file or directory

i try to run a docker image with this command: docker run 7ce2964461cc but get this error: docker: Error response from daemon: error creating overlay mount to…
0
votes
0 answers

From cache perspective, what is the difference between docker restart and docker-compose restart?

Apologies in advance if these questions are very basic. But I failed to find answers that are on-point: In terms of clearing the container cache (not policies and not SIGTERM): 1- What is the difference between running the following…