Skip to content

Commit 53e5efe

Browse files
committed
update explain
1 parent aa2c114 commit 53e5efe

File tree

1 file changed

+46
-42
lines changed

1 file changed

+46
-42
lines changed

README.md

+46-42
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ COMPOSE_PROJECT_NAME=some-site
1515
1616
APP_HOSTNAME=site.test
1717
18-
APP_PATH=/var/www/site
18+
APP_CODE_PATH=/var/www/site
1919
20-
APP_ENV=local
20+
APP_RUN_ENV=local
2121
2222
```
2323

@@ -27,48 +27,47 @@ APP_ENV=local
2727
version: "3.8"
2828

2929
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
3939

4040
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"
6968
```
7069
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.
7271

7372
---
7473

@@ -77,9 +76,14 @@ These `./nginx/site.conf` and `./supervisord/site.conf` two files can be found i
7776
Download this project to local and run command following:
7877

7978
```shell
80-
docker build ./8.0 -f Dockerfile -t [name]:[tag]
79+
docker build path -f Dockerfile -t [name]:[tag]
80+
8181
# 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
8387
```
8488

8589
## Export/Import image for uploading to server

0 commit comments

Comments
 (0)