skip to Main Content

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

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

Keycloak run with docker compose unable to access https certificate

When trying to run Keycloak in production mode using docker compose, the following error occurs: keycloak | 2023-10-30 15:13:12,276 ERROR [org.keycloak.quarkus.runtime.cli.ExecutionExceptionHandler] (main) ERROR: Failed to start server in (production) mode keycloak | 2023-10-30 15:13:12,276 ERROR [org.keycloak.quarkus.runtime.cli.ExecutionExceptionHandler] (main) ERROR: /etc/x509/https/tls.key I…

VIEW QUESTION

Php – Symfony run fails on docker installation

I get the following error when I try to run my Symfony project via docker compose. Here is the error: Script cache:clear returned with error code 255 !! SymfonyComponentErrorHandlerErrorClassNotFoundError {#76 !! #message: """ !! Attempted to load class "MakerBundle" from…

VIEW QUESTION
Back To Top
Search