Skip to content

Commit 682e2ef

Browse files
committed
add example
1 parent 74aeb92 commit 682e2ef

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

README.md

+11-5
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ Here's an example for my own use. And I prefer to use docker-compose.
1212
COMPOSE_PROJECT_NAME=some-site
1313
1414
APP_HOSTNAME=site.test
15+
16+
APP_PATH=/var/www/site
17+
18+
APP_ENV=local
19+
1520
```
1621

1722
`docker-compose.yml` :
@@ -35,18 +40,19 @@ services:
3540
build:
3641
context: ./
3742
image: chuoke/php-nginx-alpine:8.0
38-
container_name: ${COMPOSE_PROJECT_NAME}-php
43+
container_name: ${COMPOSE_PROJECT_NAME}-app
3944
environment:
4045
- PGID=1000
4146
- PUID=1000
47+
- APP_PATH=${APP_PATH}
48+
- APP_ENV=${APP_ENV}
4249
volumes:
43-
- ../:/var/www/site
44-
# - /var/www/site/vendor # On Windows
50+
- ../:${APP_PATH}
51+
# - ${APP_PATH}/vendor # For performance on Windows
4552
- ./nginx/site.conf:/etc/nginx/sites-available/site.conf
4653
# - ./nginx/nginx-octane.conf:/etc/nginx/sites-available/site.conf
4754
- ./nginx/logs:/var/log/nginx
4855
- ./supervisord/site.conf:/etc/supervisor/conf.d/supervisord.d/site.conf
49-
5056
networks:
5157
- proxy
5258
- redis
@@ -60,7 +66,7 @@ services:
6066
- "traefik.http.routers.${COMPOSE_PROJECT_NAME}-router.entrypoints=web"
6167
```
6268
63-
These `./nginx/site.conf` and `./supervisord/site.conf` two files can be found in the sample configuration of the project.
69+
These `./nginx/site.conf` and `./supervisord/site.conf` two files can be found in the sample `config` of the project.
6470

6571
---
6672

0 commit comments

Comments
 (0)