skip to Main Content

accessing the minio object presigned get URL both from inside and outside docker container – Nginx

I used the following docker-compose.yml file to deploy a FastAPI, MongoDB, Minio docker containers. version: '3.7' services: db: image: mongo:latest container_name: mongodb user: 1000:1000 volumes: - /home/krishna/mongodb/db:/data/db minio: image: minio/minio:latest container_name: minio command: server /data --console-address ":9001" ports: - 9000:9000…

VIEW QUESTION

NAS Synology docker-compose not found – Phpmyadmin

New to this so not sure what I'm missing. I'm trying to follow these instructions to install elabftw as a docker container: https://doc.elabftw.net/install-nas.html this is the container: https://registry.hub.docker.com/r/elabftw/elabimg/ Edited the docker-compose.yml but can't seem to run docker-compose up -d bash:…

VIEW QUESTION

Deploying with docker – Nginx

I am new to deploying with docker. Actually, I am running my django app in my computer inside docker container, and it is running successfully on port localhost:8080. Then I pulled the code to remote server and started docker-compose up,…

VIEW QUESTION
Back To Top
Search