I’m a complete noob when it comes to docker so I might be having a very silly problem but I cant seem to fix it. I’m trying to install a container on Windows. This one: docker run –pull=always –volume /your/download/path/:/data/downloads –volume /your/storage/path/:/data/db –log-driver json-file –log-opt max-size=10m -p 6500:6500 –name rdtclient rogerfar/rdtclient:latest After replacing some lines ..
Category : docker-compose
I just started working with docker-compose and i pushed my images to my private repository docker hub now i just want to want to test if everything is working fine. how can i link database and run both ? This is my docker-compose file : version: "3.8" services: attendize_app: build: context: . # The path ..
I am trying to spin up the official docker-compose stack for airflow v2. My only changes have to do with the fact that a) I have removed the postgres service since I am using an RDS b) the sqlaclhemy / celery endpoints have been adjusted accordingly. Here is the file version: ‘3’ x-airflow-common: &airflow-common image: ..
I’m having docker-compose.yml which content I’m not supposed to change. Is it possible to use docker-compose.debug.yml which I would use to override docker-compose.yml content but only inside Visual Studio Debug and Docker profile (defined in appsettings.json)? docker-compose.debug.yml will have an image built from local dev image file, different ports, … The goal is to have ..
I have Docker profile in the launchSettings.json like this "Docker": { "commandName": "Docker", "launchBrowser": true, "launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}", "publishAllPorts": true, "useSSL": true } Since I’m having multiple docker-compose files like docker-compose.yml docker-compose.dev.yml docker-compose.prod.yml how can I use Docker profile in launchSettings.json and target specific docker compose yml file? Source: Docker..
I’m using "generator-jhipster": "7.0.1", I’ve achieved debug my current monolithic app generated by Jhipster with docker. I added this line on appp.yml and run the docker-compose (of course I’d created the docker image following the documentation https://www.jhipster.tech/docker-compose/) environment: JAVA_TOOL_OPTIONS=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005 After that, I created a Remote JVM Debug on IntelliJ (https://medium.com/@maheshmnair/java-remote-debugging-f1730664ab89) So far, all works well, ..
I’m using docker-compose (on windows) to bring up a mongoDB along with a couple of nodeJS processes (on a remote CentOS machine via SSH). The nodeJS containers are supposed to have the code in my project directory mounted into /home/node/app so they can execute it with the command node web/run. However, when I use docker ..
I came to you for a question, I tried to up a wordpress solution (installing by myself and not using an official image) : THE INFRASTRUCTURE : I have one container with apache, php and mariadb-client (to interogate mariadb-server from another container) I have another container with mariadb on it. I use wp-cli to configure ..
I’m running a Docker MERN stack on CentOS 7 with WHM, CPanels and Apache, everything works fine until I reboot the server. I get the following error on the webpage: The proxy server received an invalid response from an upstream server. The proxy server could not handle the request Reason: Error reading from remote server ..
I’m trying to upload my project to docker hub. I followed this tutorial https://docs.docker.com/compose/django/. I use docker-compose and it works great for me, but I cannot upload it to the docker hub. I am using docker-compose push and it only pushes a project image without a base. I would like the base to also go ..