File tree 1 file changed +11
-5
lines changed
1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,11 @@ Here's an example for my own use. And I prefer to use docker-compose.
12
12
COMPOSE_PROJECT_NAME=some-site
13
13
14
14
APP_HOSTNAME=site.test
15
+
16
+ APP_PATH=/var/www/site
17
+
18
+ APP_ENV=local
19
+
15
20
```
16
21
17
22
` docker-compose.yml ` :
@@ -35,18 +40,19 @@ services:
35
40
build :
36
41
context : ./
37
42
image : chuoke/php-nginx-alpine:8.0
38
- container_name : ${COMPOSE_PROJECT_NAME}-php
43
+ container_name : ${COMPOSE_PROJECT_NAME}-app
39
44
environment :
40
45
- PGID=1000
41
46
- PUID=1000
47
+ - APP_PATH=${APP_PATH}
48
+ - APP_ENV=${APP_ENV}
42
49
volumes :
43
- - ../:/var/www/site
44
- # - /var/www/site/ vendor # On Windows
50
+ - ../:${APP_PATH}
51
+ # - ${APP_PATH}/ vendor # For performance on Windows
45
52
- ./nginx/site.conf:/etc/nginx/sites-available/site.conf
46
53
# - ./nginx/nginx-octane.conf:/etc/nginx/sites-available/site.conf
47
54
- ./nginx/logs:/var/log/nginx
48
55
- ./supervisord/site.conf:/etc/supervisor/conf.d/supervisord.d/site.conf
49
-
50
56
networks :
51
57
- proxy
52
58
- redis
@@ -60,7 +66,7 @@ services:
60
66
- " traefik.http.routers.${COMPOSE_PROJECT_NAME}-router.entrypoints=web"
61
67
` ` `
62
68
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.
64
70
65
71
---
66
72
You can’t perform that action at this time.
0 commit comments