Sign inSign up

iamluc/symfony

By iamluc

Updated almost 7 years ago

Apache + PHP with useful tools (blackfire, composer)

Image
5

6.8K

iamluc/symfony repository overview

About

Apache + PHP with useful tools (blackfire, composer)

Tags
Usage

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
Build

docker build -t iamluc/symfony .

Tag summary

Content type

Image

Digest

sha256:243b685f9

Size

113.5 MB

Last updated

over 8 years ago

docker pull iamluc/symfony