symfony-docker
symfony-docker copied to clipboard
A Docker-based installer and runtime for Symfony. Install: download and `docker compose up`.
On the clean installation run > composer require symfony/orm-pack > > docker compose up the following error appears on CI workflow > "Could not connect to /var/run/php/php-fpm.sock\n" Check: https://github.com/cosminsandu/symfony-docker/actions/runs/3060906399/jobs/4950397486
Hi, i cant figure out how to make ssl function localy i have a fresh ubuntu installation and fresh symfony docker but my browser doesnt trust the cert provided from...
I created new repository and tried symfony/panther package. After running composer command from container, this was added to Dockerfile: ```Dockerfile ###> symfony/panther ### # Chromium and ChromeDriver ENV PANTHER_NO_SANDBOX 1...
Hi all, I have the weird issue that I can only make 1 request. I followed the steps to enable it in an existing project and the first request went...
i tried to install webpack and npm, but i can't seem to install them. i always get the error npm: not found this is my Dockerfile ``` ARG NODE_VERSION=20 FROM...
As php takes the last ini value set, in frankenphp/conf.d The order currently is: app.dev.ini app.ini Expected would be: app.ini app.dev.ini Should app.dev.ini be renamed so it is loaded after...
Hi @dunglas, Many thanks for the last update of this repository. It works like a charm and I was able to run a demo quite easily. The only problem I...
How to run Symfony Messenger with this setup? I thought about this in compose.yaml: ```yaml php-worker: build: context: . target: frankenphp_dev image: ${IMAGES_PREFIX:-}app-php restart: unless-stopped command: php bin/console messenger:consume async...
currently in compose.yaml there is: ``` TRUSTED_PROXIES: ${TRUSTED_PROXIES:-127.0.0.0/8,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16} TRUSTED_HOSTS: ^${SERVER_NAME:-example\.com|localhost}|php$$ ``` ok so spin up for the localhost, my container has this: ``` docker inspect -f '{{range.NetworkSettings.Networks}}{{.IPAddress}}{{end}}' www-php-1 172.21.0.1 ```...