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.
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
docker save [image] -o file.tar
docker load -i file.tar
The MIT License (MIT). Please see License File for more information.