I am running Windows Nanoserver in a container.The nanoserver contains only the command prompt and lacks powershell. I want to execute certain commands inside t
I'm new to using Prisma as well as Dockerizing my setup. I would like to specify my data model using Prisma, have Postgres as my database and use that in a Grap
I am creating a PHP(Phalcon) project, using docker compose. The image is tailored based on the webdevops project. In our production, staging, and my own machine
Use host and br to start two containers docker run -d --name="nginx_host" --net="host" nginx docker run -d --name nginx_br -p 8000:80 nginx View the container l
I have few images hosted in ACR, I want to inspect the image (Repository image) deployed in ACR. For example I have one "hello-world" image in "test123" ACR. I
I'm using this container to start elasticsearch in docker. In accordance with the manual I have to update max_map_count to start the container sudo sysctl -
This is message: What's wrong? I should wait for the production docker? This is docker config: # build stage FROM node:lts-alpine as build-stage WORKDIR /app C
Thought I'd just wanted to share this. So I am testing creation of a docker image/container with a nodejs app usiung Dockerfile. Everything went smoothly, unt
I have a Docker file like the following: FROM openjdk:8 ADD . /usr/share/app-name-tmp WORKDIR /usr/share/app-name-tmp RUN ./gradlew build \ mv ./build/l
I am trying to run my restful api in docker but having issue with my golang executable it is always not found. Here is my Dockerfile # Start from golang base im
At which IP address can a docker container connect to its host on Docker for Windows (on Windows 10)? How do you find this IP address? Example: you have a serv
I am newbie on using Ubuntu, I am trying to install apache-superset and successfully installed it by using Docker by directly sudo docker pull apache/superset,
currently I am working on Linux elgalu/selenium and dosel/zalenium images are successfully pulled but while running the images by using below command # Ru
I'm trying to backup/restore a PostgreSQL database as is explained on the Docker website, but the data is not restored. The volumes used by the database image
my task is to create a docker container from my own Dockerfile using ubuntu:18.10 and run pdflatex in this container. My system is MacOs, my Dockerfile looks li
I'm trying to mount a volume in docker-compose to apache image. The problem is, that apache in my docker is run under www-data:www-data but the mounted director
I get this error when I try to build my Dockerfile. How can I fix this? failed to compute cache key: "/Pipfile.lock" not found: not found # Pull base image FROM
If I run the following docker tail command: docker logs --tail all 8f8df1de5f9c |& wc -l 645 It reports 645 lines If I then run: docker logs --tail 645
Here is my docker-compose.yml, elasticsearch: ports: - 9200:9200/tcp image: elasticsearch:2.4 volumes: - /data/elasticsearch/usr/share/elasticsearch/da
I want to be able to use an ALB (ELBv2) to route traffic to multiple port mappings that are exposed by a task of a given service. Example -- Service A is compos