skip to Main Content

Docker – How to configure certificate for fastapi app

I created two applications (backend (fastapi. Works on 8000 port), frontend (reactjs. Works on 80 port)) they are communicate each with other. My docker-compose file: version: '3.7' services: frontend: container_name: "frontend" build: context: ./frontend stop_signal: SIGTERM ports: - "80:80" volumes:…

VIEW QUESTION

Can't connect to phpmyadmin mariadb windows 10 laravel sail

I'm having trouble connecting to my MariaDB database via my Laravel Sail docker environment through PHPmyadmin on Windows 10. Here's my docker compose file, what am I missing: services: laravel.test: build: context: ./vendor/laravel/sail/runtimes/8.1 dockerfile: Dockerfile args: WWWGROUP: '${WWWGROUP}' image: sail-8.1/app…

VIEW QUESTION

Can't connect to mysql with Django inside docker

I am trying to start django project using MySQL and Docker to containerize it. But get an error. Here is it's traceback: testcasebooks-backend-1 | Traceback (most recent call last): testcasebooks-backend-1 | File "/usr/local/lib/python3.11/site-packages/django/db/backends/base/base.py", line 289, in ensure_connection testcasebooks-backend-1 | self.connect()…

VIEW QUESTION

Traefik v2 404 page not found for docker compose service

Here is a docker compose file version: "3" networks: vester-net: name: vester-net services: traefik: image: traefik:v2.10 volumes: - /var/run/docker.sock:/var/run/docker.sock:ro # It's not recommended mounting the docker socket into a container -> see https://github.com/wollomatic/traefik2-hardened networks: - vester-net command: --api.insecure=true --providers.docker --accessLog…

VIEW QUESTION
Back To Top
Search