Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 688 Bytes

Readme.md

File metadata and controls

26 lines (17 loc) · 688 Bytes

A alpine-php container for running yii2-advanced apps.

This replaces the /etc/nginx/presets/default.conf

It will replace the hostnames with the ENV variables HOST_FRONT and HOST_BACK

running in current directory

docker run -d \
    -e HOST_FRONT=frontend.dev \
    -e HOST_BACK=backend.dev \
    -v $(pwd):/app:rw \
    wartron/alpine-php-yii2-advanced

running with nginx proxy and a local linked db

docker run -d \
    -e VIRTUAL_HOST=frontend.dev,backend.dev \
    -e HOST_FRONT=frontend.dev \
    -e HOST_BACK=backend.dev \
    -v $(pwd):/app:rw \
    --link db:db \
    wartron/alpine-php-yii2-advanced