Skip to content

An PHP Docker that works for Laravel also works for PHP.

License

Notifications You must be signed in to change notification settings

chuoke/php-nginx-alpine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

An PHP Docker that works for Laravel also works for PHP.


DOCKER HUB

Example usage

Here's an example for my own use. And I prefer to use docker-compose.

.env:

COMPOSE_PROJECT_NAME=some-site

APP_HOSTNAME=site.test

APP_PATH=/var/www/site

APP_ENV=local

docker-compose.yml :

version: "3.8"

networks:
    proxy:
        external: true
        name: traefik_default
    redis:
        external: true
        name: redis_default
    mysql:
        external: true
        name: mysql_default

services:
    php:
        build:
            context: ./
        image: chuoke/php-nginx-alpine:8.0
        container_name: ${COMPOSE_PROJECT_NAME}-app
        environment:
            - PGID=1000
            - PUID=1000
            - APP_PATH=${APP_PATH}
            - APP_ENV=${APP_ENV}
        volumes:
            - ../:${APP_PATH}
            # - ${APP_PATH}/vendor # For performance on Windows
            - ./nginx/site.conf:/etc/nginx/sites-available/site.conf
            # - ./nginx/nginx-octane.conf:/etc/nginx/sites-available/site.conf
            - ./nginx/logs:/var/log/nginx
            - ./supervisord/site.conf:/etc/supervisor/conf.d/supervisord.d/site.conf
        networks:
            - proxy
            - redis
            - mysql
        expose:
            - "80"
        labels:
            - "traefik.enable=true"
            - "traefik.docker.network=traefik_default"
            - "traefik.http.routers.${COMPOSE_PROJECT_NAME}-router.rule=Host(`${APP_HOSTNAME}`)"
            - "traefik.http.routers.${COMPOSE_PROJECT_NAME}-router.entrypoints=web"

These ./nginx/site.conf and ./supervisord/site.conf two files can be found in the sample config of the project.


Build it from Dockerfile by self

Download this project to local and run command following:

docker build ./8.0 -f Dockerfile -t [name]:[tag]
# example:
docker build ./8.0 -f Dockerfile -t php-nginx-alpine:8.0

Export/Import image for uploading to server

Export

docker save [image] -o file.tar

Import

docker load -i file.tar

License

The MIT License (MIT). Please see License File for more information.

About

An PHP Docker that works for Laravel also works for PHP.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published