Skip to content

Commit 3e30eba

Browse files
committed
docs(README.md): minor improvements
1 parent 76e47bb commit 3e30eba

File tree

1 file changed

+14
-15
lines changed

1 file changed

+14
-15
lines changed

README.md

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Just clone the repository into your preferred path:
6868

6969
```bash
7070
$ mkdir -p ~/path/to/my-new-project && cd ~/path/to/my-new-project
71-
$ git clone git@github.com:alcidesrc/dockerized-php.git .
71+
$ git clone git@github.com:AlcidesRC/dockerized-php.git .
7272
```
7373

7474
### Conventions
@@ -163,23 +163,22 @@ The container service logs to `STDOUT` by default.
163163
#### Project Structure
164164

165165
```text
166-
├── .env # DotEnv file related with Makefile tasks
167-
├── caddy-root-ca-authority.crt # Generated certificate file with Caddy Root CA Authority details
168-
├── docker # Folder with assets required to build the infrastructure
169-
│   ├── caddy # Folder with Caddy's configuration file(s)
170-
│   ├── docker-compose.override.dev.yml # Docker Compose file for development environment
171-
│   ├── docker-compose.override.prod.yml # Docker Compose file for production environment
172-
│   ├── docker-compose.yml # Docker Compose base file
173-
│   ├── Dockerfile # Dockerfile to build the PHP-FPM image
174-
│   ├── healthcheck.sh # Shell script for Docker's HEALTHCHECK directive
175-
│   ├── entrypoint.sh # Shell script for Docker's ENTRYPOINT directive
176-
│   └── php-fpm # Folder with PHP-FPM configuration file(s)
166+
.
167+
├── docker # Folder with assets required to build the infrastructure
168+
│   ├── caddy # Folder with Caddy's configuration file(s)
169+
│   ├── php-fpm # Folder with PHP-FPM's configuration file(s)
170+
│   ├── docker-compose.override.dev.yml # Docker Compose file for development environment
171+
│   ├── docker-compose.override.prod.yml # Docker Compose file for production environment
172+
│   ├── docker-compose.yml # Base Docker Compose file
173+
│   ├── Dockerfile # Dockerfile to build the PHP-FPM image
174+
│   ├── entrypoint.sh # Entrypoint script which allows to customize the xDebug config file
175+
│   └── healthcheck.sh # Healthcheck script
176+
├── README # Folder with README.md required assets
177+
├── src # PHP application folder
177178
├── LICENSE
178179
├── Makefile
179-
├── README # Folder with README.md required assets
180180
├── README-CADDY.md
181-
├── README.md
182-
└── src # PHP application folder
181+
└── README.md
183182
```
184183

185184
##### Volumes

0 commit comments

Comments
 (0)