@@ -15,9 +15,9 @@ COMPOSE_PROJECT_NAME=some-site
15
15
16
16
APP_HOSTNAME=site.test
17
17
18
- APP_PATH =/var/www/site
18
+ APP_CODE_PATH =/var/www/site
19
19
20
- APP_ENV =local
20
+ APP_RUN_ENV =local
21
21
22
22
```
23
23
@@ -27,48 +27,47 @@ APP_ENV=local
27
27
version : " 3.8"
28
28
29
29
networks :
30
- proxy :
31
- external : true
32
- name : traefik_default
33
- redis :
34
- external : true
35
- name : redis_default
36
- mysql :
37
- external : true
38
- name : mysql_default
30
+ proxy :
31
+ external : true
32
+ name : traefik_default
33
+ redis :
34
+ external : true
35
+ name : redis_default
36
+ mysql :
37
+ external : true
38
+ name : mysql_default
39
39
40
40
services :
41
- php :
42
- build :
43
- context : ./
44
- image : chuoke/php-nginx-alpine:8.0
45
- container_name : ${COMPOSE_PROJECT_NAME}-app
46
- environment :
47
- - PGID=1000
48
- - PUID=1000
49
- - APP_PATH=${APP_PATH}
50
- - APP_ENV=${APP_ENV}
51
- volumes :
52
- - ../:${APP_PATH}
53
- # - ${APP_PATH}/vendor # For performance on Windows
54
- - ./nginx/site.conf:/etc/nginx/sites-available/site.conf
55
- # - ./nginx/nginx-octane.conf:/etc/nginx/sites-available/site.conf
56
- - ./nginx/logs:/var/log/nginx
57
- - ./supervisord/site.conf:/etc/supervisor/conf.d/supervisord.d/site.conf
58
- networks :
59
- - proxy
60
- - redis
61
- - mysql
62
- expose :
63
- - " 80"
64
- labels :
65
- - " traefik.enable=true"
66
- - " traefik.docker.network=traefik_default"
67
- - " traefik.http.routers.${COMPOSE_PROJECT_NAME}-router.rule=Host(`${APP_HOSTNAME}`)"
68
- - " traefik.http.routers.${COMPOSE_PROJECT_NAME}-router.entrypoints=web"
41
+ php :
42
+ image : chuoke/php-nginx-alpine:8.0
43
+ container_name : ${COMPOSE_PROJECT_NAME}
44
+ working_dir : ${APP_CODE_PATH}
45
+ environment :
46
+ - PGID=1000
47
+ - PUID=1000
48
+ - APP_CODE_PATH=${APP_CODE_PATH}
49
+ - APP_RUN_ENV=${APP_RUN_ENV}
50
+ volumes :
51
+ - ../:${APP_CODE_PATH}
52
+ # - ${APP_CODE_PATH}/vendor # For performance on Windows
53
+ - ./nginx/site.conf:/etc/nginx/sites-available/site.conf
54
+ # - ./nginx/nginx-octane.conf:/etc/nginx/sites-available/site.conf
55
+ - ./nginx/logs:/var/log/nginx
56
+ - ./supervisord/site.conf:/etc/supervisor/conf.d/supervisord.d/site.conf
57
+ networks :
58
+ - proxy
59
+ - redis
60
+ - mysql
61
+ expose :
62
+ - " 80"
63
+ labels :
64
+ - " traefik.enable=true"
65
+ - " traefik.docker.network=traefik_default"
66
+ - " traefik.http.routers.${COMPOSE_PROJECT_NAME}-router.rule=Host(`${APP_HOSTNAME}`)"
67
+ - " traefik.http.routers.${COMPOSE_PROJECT_NAME}-router.entrypoints=web"
69
68
` ` `
70
69
71
- These ` ./nginx/site.conf` and `./supervisord/site.conf` two files can be found in the sample `config` of the project.
70
+ These example files like ` ./nginx/site.conf` and `./supervisord/site.conf` can be found in the sample `config` of the project.
72
71
73
72
---
74
73
@@ -77,9 +76,14 @@ These `./nginx/site.conf` and `./supervisord/site.conf` two files can be found i
77
76
Download this project to local and run command following :
78
77
79
78
` ` ` shell
80
- docker build ./8.0 -f Dockerfile -t [name]:[tag]
79
+ docker build path -f Dockerfile -t [name]:[tag]
80
+
81
81
# example:
82
- docker build ./8.0 -f Dockerfile -t php-nginx-alpine:8.0
82
+ docker build ./8.0 -f ./8.0/Dockerfile -t php-nginx-alpine:8.0
83
+
84
+ # Push to Docker Hub
85
+ docker tag php-nginx-alpine:8.0 your-name/php-nginx-alpine:8.0
86
+ docker push your-name/php-nginx-alpine:8.0
83
87
` ` `
84
88
85
89
# # Export/Import image for uploading to server
0 commit comments