docker Questions
9
Solved
I am trying to install Docker Desktop for Windows and once I have completed the entire process as mentioned in their official documentation, including installing and enabling the wsl 2 on Windows. ...
Position asked 23/7, 2022 at 5:49
6
Solved
I'm trying to use the docker's image elk-docker (https://elk-docker.readthedocs.io/) , using Docker Compose. The .yml file, is like this:
elk:
image: sebp/elk
ports:
- "5601:5601"
- "9200:9200"
...
Escarole asked 9/12, 2016 at 16:15
4
Solved
here is my requirements.txt
beautifulsoup4==4.11.1
cachetools==5.2.0
certifi==2022.12.7
charset-normalizer==2.1.1
click==8.1.3
colorama==0.4.6
Flask==2.2.2
Flask-SQLAlchemy==3.0.2
google==3.0.0
goo...
Calumnious asked 30/12, 2022 at 7:35
6
Solved
I am trying to redirect a example.com/minio location to minio console, which is run behind a nginx proxy both run by a docker compose file. My problem is that, when I'm trying to reverse proxy the ...
Lueck asked 26/4, 2022 at 21:49
4
Solved
We want to have the same VSCode settings for the whole crew of developers. Also it would be fine to have a oneline command to tear VSCode down and restart it from scratch with predefined settings a...
Selfhood asked 3/6, 2019 at 14:54
4
Solved
I upgraded my project to .NET 8 today; I followed the official guide on migrating from .NET 7 to .NET 8. However, upon deploying the application, I've encountered a problem.
Locally, the solution b...
Subjection asked 23/12, 2023 at 17:19
4
Solved
I have the following docker file that runs a spring boot application:
# For Java 11, try this
FROM adoptopenjdk/openjdk11:alpine-jre
#
ARG JAR_FILE=/build/libs/pokerstats-0.0.1-SNAPSHOT.jar
#
WOR...
7
I was trying to build a container in Docker for some experiments. Here is my Dockerfile.
FROM debian
RUN mkdir -p /var/run/sshd
RUN apt-get update
RUN apt-get install -y openssh-server
RUN apt-...
4
There is an option in docker-desktop that allow to change the "Docker subnet". And I don't see this default subnet 192.168.65.0/28 being used anywhere.
I tried to docker network inspect ...
Veal asked 11/7, 2020 at 13:1
4
Solved
What I want to do
I want to install yq to edit some yaml files on a Docker container.
Dockerfile
FROM python:3
RUN apt-get update
RUN apt-key adv --keyserver keyserver.ubuntu.com --keyserver-optio...
4
Solved
I am running a kubernetes cluster on AWS-ec2 and I would like to have the pod (container) know during runtime which region it's running on, how can this be done?
Diego asked 3/6, 2018 at 13:59
2
I am having below error while running the docker-compose file.
I have created a bridge network with name my_network
Unsupported config option for services.networks: 'my_network'
docker-compose.yml
...
Naranjo asked 9/7, 2020 at 23:55
5
Solved
I was builting a web app with streamlit, OpenCV and Torch on local machine. The whole project went well until I built a Docker file and was about to transport it to my Google Cloud Platform. Can an...
2
I'm writing a Dockerfile for an image that, when run, performs the following two things in order:
Start up a daemon as root
Start up an interactive shell as a non-root user
The problem is that EN...
Benavidez asked 22/5, 2019 at 21:41
3
Solved
So I have this remote folder /mnt/shared mounted with fuse. It is mostly available, except there shall be some disconnections from time to time.
The actual mounted folder /mnt/shared becomes avail...
Trifurcate asked 5/5, 2020 at 11:40
3
Solved
I need to configure Postogres with some SQL commands, but everything I put in the /docker-entrypoint-initdb.d folder doesn't get executed.
I'm using the postgres:9.6 image.
My Dockerfile is as foll...
Dygall asked 6/12, 2022 at 15:34
4
Solved
I'm hoping to cache a specific stage in my multi-stage Dockerfile that my test stages use in an effort speed the build process up. Otherwise, it builds for unit testing and then for integration tes...
Synthetic asked 30/10, 2021 at 22:35
7
Solved
I've created a docker image of a project (very large project that takes time to compile) and I forgot to add a file in it.
I does not have to do with the build, it's just a test file.
Is it poss...
Acorn asked 19/6, 2019 at 14:45
9
Solved
Since the update of PHP 7.1 to PHP 7.2 I can't install oci8. I have this error:
root@3ab6027c8d95:/var/www# php -v
PHP Warning: PHP Startup: Unable to load dynamic library 'oci8.so' (tried: /...
8
I'm new to docker. I'm wondering what is the wrong here? this is a basic react-project that i wanted to build a docker image from it according to a tutorial that i follow.
DockerFile
FROM node:14....
Codify asked 27/2, 2022 at 13:11
5
Solved
I'm trying to build a ruby rails docker-compose postgreSQL db with pgadmin4, but keep getting permission exception from the container. Even /bin/sh in the container returns the same error.
I'm usi...
Paramedic asked 5/2, 2020 at 7:28
4
Solved
I usually write Dockerfiles for Java / Go applications and it's the first time I have encountered a situation where I have to write a Dockerfile for an already existing (and production running) Nod...
5
Solved
I'm using docker for windows (Version 18.03.0-ce-win59 (16762)) in a windows 10 pro. All the containers run ok after running the command docker-compose -up -d. The problem is when I restart the doc...
Flanagan asked 9/7, 2018 at 9:37
2
I wanted to put the question and its resolution here as I encountered this issue while pulling an image from a private Nexus repository and I wasn't able to find a clear solution.
Issue:
I have an...
Harmonica asked 7/1, 2020 at 19:30
4
Solved
I put the following line at the top of my docker-compose.yml, to get a pre-set names for my containers spun by that particular docker-compose:
name: my_project_name
The goal is, for example, to ha...
Bridgeport asked 20/8, 2022 at 13:53
© 2022 - 2024 — McMap. All rights reserved.