Host to deploy a docker-compose file in OVHCloud? - docker-compose

I want to deploy my docker-compose file in OVHCloud, but i can't find informations about how can i do it?
Is anyone have an idea?
I tried this https://www.youtube.com/watch?v=ApfujBFT82g

Related

mongo-express admin issue when using docker compose up

I'm working on a task where I need to run mongo-express to show a website. Upon running docker-compose up, I am presented with an admin error. please see the images below of both the docker-compose.yml file and a screenshot of the error. Any help would be great.
How am i able to resolve this issue.

Deploying Kong with Postgres db in Azure App service

I want to deploy Kong with DB mode on the Azure App Service using the docker-compose file.
I have the following docker-compose.yml file:
https://github.com/saurabhmasc/kong-compose/blob/main/docker-compose.yml
This file is running properly in Doker Desktop.
But when I tried to run it in Azure app services it was not running.
Please gives us suggestions.
Thanks
Saurabh

Cannot access to mongodb from container app

I setting up a project using docker, nodejs and mongodb. Here is my configuration: https://github.com/tuanna2704/docker-express/blob/master/docker-compose.yml
after I run
docker-compose up
And I can access to http://localhost:4000 via my real machine but application cannot access to db container. Im newbie docker. Any one can explain for me reason why? Thanks a lot!
Check mongo client mongodb://localhost:27017/ working status after
docker-compose up in your local machine; If it works, then mongodb://mongo:27017/ should be fine
Better add tags in the image name image: mongo:latest

chaincode: failed to execute script docker compose

I am not able to execute docker-compose script while trying to set up the chaincode environment. Any advices to solve this?
Snapshot: https://drive.google.com/file/d/0B0rw5s9roTIicUVSY3RFUFdPT2M/view?usp=sharing
Thanks!
It looks like you have a problem with docker-compose installation at the first place and seemed nothing to do with hyperledger.
Please try to follow getting started.

Docker compose - image not found

I'm following http://bradgessler.com/articles/docker-bundler. The first time around, it made "bundler fast again". I started getting issues with some missing linked files in the gems, so I blew away the docker images, and did a docker-compose build. After it built, I could no longer do docker-compose run web bundle -- I get this:
Creating network "myapp_default" with the default driver
Pulling bundle (myapp_web:latest)...
Pulling repository docker.io/library/myapp_web
ERROR: Error: image library/myapp_web:latest not found
How do I resolve this?
Following the same article, here are the steps that worked for me:
Run docker-compose build web
Find the name of your web image: run docker images. Mine was 'appcontainer_web'
Open docker-compose.yml and replace 'image: myapp_web' with 'image: [your_image_name]'
After the above change I still encountered an error: No closing quotation. The fix was to remove the quote from "I'm" in that same docker-compose.yml file "command: echo I'm a little..."