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
How do I transfer a Docker image from one machine to another one without using a repository, no matter private or public? I create my own image in VirtualBox,
I am trying to teach my Gitlab Runner image to get custom builder images from my private Docker Registry (GCR running in the Google Cloud). What did not work o
In our solution we want to connect our Edge module to the servicebus of a host on a different network. The dns server is not allowed (per design) to have the d
I tried to run Docker on a virtual machine. Host : MacBook VM : Parallels Windows 7 And error occurs: Is it possible?
I am new to Docker and Apache and am trying to execute a very simple program that would display a web page on my localhost. However, I keep getting a 403 Forbid
My requirement is to create DB and Tables in Clickhouse when I'm bringing it up using docker-compose. If it is mysql, I do it as below : mysql_1: image:
My docker-compose.yml looks like the below and I am trying to follow the compose file from the docker registry documentation here. When i run docker-compose up
I've been googling this error for the past two days, but none of the solutions seem to help. I've build a simple NodeJS server that makes an external API call w
I'm creating a Dockerfile that downloads, builds, installs node.js from source. I'd like to checksum the download before building it, and stop or exit the Dock
Quite often, when I start my docker-composed app, I like to check that everything started correctly and everything's fine. So I do docker-compose up, look at t
I'm a newbie in docker. I try to run $ docker run hello-world And I got this error: $ docker run hello-world Unable to find image 'hello-world:latest'
Is it possible to get syntax highlighting for a Dockerfile in Sublime Text?
compose.yml file, which looks like this: version: '2' services: discovery-microservice: build: discovery-microservice context: /discovery-microserv
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'
I am trying to get a nextcloud + mariadb + nginx docker-compose up and running locally, but I am stuck when it comes to the nginx.conf file. I am following this
I got this pipeline and a runner on my remote machine bitbucket_pipeline.yml: image: rust pipelines: branches: master: - step:
I mounted the container with this parameter: -v /home/test/:/home/test Inside /home/test in the host there is a symbolic link pointing to a /mnt/ folder.