Top "Dockerfile" questions

A Dockerfile is a file containing instructions to build a Docker image

How to use the official docker elasticsearch container?

I have the following Dockerfile: FROM docker.elastic.co/elasticsearch/elasticsearch:5.4.0 RUN elasticsearch EXPOSE 80 I think the 3rd line is …

elasticsearch docker dockerfile docker-machine elasticsearch-plugin
How to configure different dockerfile for development and production

I use docker for development and in production for laravel project. I have slightly different dockerfile for development and production. …

docker dockerfile
How to remove entrypoint from parent Image on Dockerfile

I want to remove entrypoint from Dockerfile, but parent image has a entrypoint. how do I can remove it?

docker dockerfile
How to pass ARG value to ENTRYPOINT?

Docker 1.9 allows to pass arguments to a dockerfile. See link: https://docs.docker.com/engine/reference/builder/#arg How can …

docker dockerfile docker-compose docker-registry
localhost not working docker windows 10

I am using VS2017 docker support. VS created DockerFile for me and when I build docker-compose file, it creates the …

docker dockerfile docker-for-windows asp.net-docker-extensions
Docker: Error response from daemon: rpc error: code = 2 desc = "oci runtime error: exec format error"

I wrote the following docker file FROM cloudera/quickstart MAINTAINER abhishek "http://www.foobar.com" ADD ./SparkIntegrationTestsAssembly.jar / ADD ./entrypoint.…

docker dockerfile boot2docker
Running a Docker file stored locally

I have a docker file that includes a python script. So far I pushed it to my github and from …

docker dockerfile docker-image
Cannot "pip install cryptography" in Docker Alpine Linux 3.3 with OpenSSL 1.0.2g and Python 2.7

Solved Wow, these guys are fast... It's basically this https://github.com/pyca/cryptography/issues/2750 It turned out that a …

python linux openssl dockerfile alpine
Dockerfile COPY from a Windows file system to a docker container

I have a simple Dockerfile: FROM php:7.1-apache LABEL maintainer="[email protected]" COPY C:/Users/rburton/code/MyAgsourceAPI /var/…

docker dockerfile docker-for-windows
launch a CAT command unix into Dockerfile

I would like to launch this vagrant command cat(run perfectly!) to provisionning my container with a Dockerfile : # Configure Virtualenvwrapper. …

unix docker dockerfile cat