I am trying to run a simple node application with express but I get this error: Here’s my working directory: I ran the following command to mount my ...
Discy Latest Questions
I’m going through this tutorial making docker image with: docker build -t myapp_back . and then want to run container with: docker run -p 3000:3000 -d myapp_back it’s simlpe node/express app But I’m getting an error: C:\Program Files\Docker\Docker\Resources\bin\docker.exe: Error response from ...
I am sorry for my very newbie question, but I am having a terrible day figuring out this error, I have an Express app and I am trying to run it in docker compose. I’ve used this Dockerfile: FROM mhart/alpine-node RUN mkdir ...
I am currently trying out this tutorial for node express with mongodb https://medium.com/@sunnykay/docker-development-workflow-node-express-mongo-4bb3b1f7eb1e the first part works fine where to build the docker-compose.yml it works totally fine building it locally so I tried to tag it and push ...
I have two docker containers: Nginx and App. The app container extends PHP-fpm and also has my Laravel Code. In my docker-compose.yml I’m doing: version: '2' services: nginx: build: ...
I am currently building an image from alpine:3.7. There are two packages that I am having problems with: pendulum (specifically python-dateutils package) service_identity (specifically attrs package) The error that I receive it is: Could not find a version that satisfies the requirement setuptools ...
In one folder I have 3 files: base.py, Dockerfile and docker-compose.yml. base.py: import psycopg2 conn = psycopg2.connect("dbname='base123' user='postgres' host='db' password='pw1234'") Dockerfile: FROM ubuntu:16.04 RUN apt-get update RUN apt-get -y install python-pip RUN apt-get update RUN pip install --upgrade pip RUN pip install psycopg2-binary COPY base.py base.py RUN python base.py docker-compose.yml: version: '3' services: db: ...
I am building the Dockerfile for python script which will run in minikube windows 10 system below is my Dockerfile Building the docker using the below command docker build -t python-helloworld . and loading that in minikube docker demon docker save python-helloworld ...
I’m trying to run Python’s Scrapy in a Docker container based on python:alpine. It was working before, but now I’d like to use Scrapy’s Image Pipeline which requires me to install Pillow. As a simplified example, I ...