Apache + PHP with useful tools (blackfire, composer)
6.8K
Apache + PHP with useful tools (blackfire, composer)
In CLI
docker run -v `pwd`:/var/www/html -p 80:80 iamluc/symfony
With docker-compose
app:
image: iamluc/symfony
volumes:
- .:/var/www/html
ports:
# Adapt to you need
- 80:80
# You will have to export env variables (BLACKFIRE_SERVER_ID BLACKFIRE_SERVER_TOKEN)
# before running docker-compose. Or comment lines below
links:
- blackfire:blackfire
blackfire:
image: blackfire/blackfire
environment:
- BLACKFIRE_SERVER_ID
- BLACKFIRE_SERVER_TOKEN
docker build -t iamluc/symfony .
Content type
Image
Digest
sha256:243b685f9…
Size
113.5 MB
Last updated
over 8 years ago
docker pull iamluc/symfony