I am not sure where to put my docker files
I have a repository with two folders, one for a React app in the client directory and one for a Flask app using Postgres in the server directory. I am unsure where I should place my Docker and YAML files…
I have a repository with two folders, one for a React app in the client directory and one for a Flask app using Postgres in the server directory. I am unsure where I should place my Docker and YAML files…
I have a multiple Laravel local projects and I'm trying to change one projects Redis port, so that it doesn't conflict with another project. Projects are one the same network so that they can communicate with one another, but they…
I am trying to make a container where I install Mongo DB server as well as python 3.8 with pymongo module but it does not work. In the dumps folder I am trying to create a backup of tar.gz file…
I'm coding with NestJS and using Docker, I can't configure my own docker-compose file to serve on the local network card with IP 192.168.1.7. i saw this link before. Docker subnet: 192.168.65.0 networks: host: name: mamanpaz external: true lan_access: driver:…
I've deployed a multi-container app to the Azure App Service with a minimalistic docker-compose file: version: '3' services: backend: image: myregistry.azurecr.io/backend:latest ports: - "3000:3000" frontend: image: myregistry.azurecr.io/frontend:latest ports: - "4173:4173" Following the instructions here and considering this issue on how…
Context : Rails 6 app hosted in Docker, using docker-compose When the Rails container starts, I get : Mysql2::Error::ConnectionError: Access denied for user 'user'@'%' to database 'db_production' Even after MySQL is fully initalized My docker-compose.yml : services: app_production: image: app_production…
Im using nginx as a reverse proxy to serve an Express.js backend and a Vue.js frontend. The whole application runs in two Docker Compose images, one for development, and one for production. I'd like to be able to test the…
I'm facing issue with my new Mac wit M1 Chip. I use the same config as on my old mac where it worked: version: '3' services: shop: container_name: shop image: dockware/dev:latest ports: - "22:22" # ssh - "80:80" # apache2…
It seems to me that Postgres is ignoring my envar and the sql script Here's my docker-compose version: '3.1' services: db: image: postgres restart: always environment: POSTGRES_PASSWORD: mysecretpassword PGDATA: /var/lib/postgresql/data/pgdata POSTGRES_DB: ecommerce volumes: - /custom/mount:/var/lib/postgresql/data - ./sql_script.sql:/docker-entrypoint-initdb.d/sql_script.sql ports: - 5432:5432…
I am currently using a laravel project with docker, I don't understand but when I start docker using docker-compose up -d All is working good and very weel my container started and I can use it with my postgres database.…