J'ai créé un projet avec symfony6. Je souhaite dockeriser ce projet.
À la racine du dossier qui contient tout le projet (src, public, .env, var, templates etc) j'ai ajouté un fichier docker-compose.yml et un dossier docker dans lequel j'ai trois fichiers (Dockerfile, apache.conf, docker.sh)
le dockerfile:
FROM php:8.1-apache
# Installe, rend exécutable et exécute le programme afin d'installer les extensions PHP ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/ RUN chmod +x /usr/local/bin/install-php-extensions && \ install-php-extensions pdo_pgsql intl
#Télécharge composer.phar, desactive tls et installe composer dans le répertoire RUN curl -sSk https://getcomposer.org/installer | php -- --disable-tls && \ mv composer.phar /usr/local/bin/composer
#Installe nodeJS afin de disposer des commandes npm RUN apt update && apt install -yqq nodejs npm
L'image est bien construite docker build . -f ./docker/Dockerfile -t myimage Les containers sont bien lancés: docker compose up -d
En testant : localhost:8080/ j'ai une erreur:
The stream or file "/var/www/var/log/dev.log" could not be opened in append mode: Failed to open stream: Permission denied The exception occurred while attempting to log: User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::build()" might add "void" as a native return type declaration in the future. Do the same in child class "Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle" now to avoid errors or add an explicit @return annotation to suppress this message. Context: {"exception":{}}
Pouvez-vous m'aider? Je suis ultra débutant. Merci à ceux qui prendront le temps de m'aider.
- Edité par lawre51 23 septembre 2023 à 18:12:22
Dockeriser symfony6
× Après avoir cliqué sur "Répondre" vous serez invité à vous connecter pour que votre message soit publié.
× Attention, ce sujet est très ancien. Le déterrer n'est pas forcément approprié. Nous te conseillons de créer un nouveau sujet pour poser ta question.