Skip to content
This repository was archived by the owner on Mar 15, 2019. It is now read-only.

Commit c5cdef6

Browse files
author
Julien Neuhart
authored
V2.3.0 (#48)
* removing build step as PHP-FPM use an image + updating its .gitignore * updating modules versions * updating README.md + removing .app.env & app.yml
1 parent 73adb92 commit c5cdef6

12 files changed

+23
-41
lines changed

README.md

+14-6
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<h3 align="center">kickoff-docker-php</h3>
55
<p align="center">A complete stack for your PHP project powered by Docker</p>
66
<p align="center">
7-
<a href="https://github.com/thecodingmachine/kickoff-docker-php/tree/v2.2.0"><img src="https://img.shields.io/badge/stable-v2.2.0-green.svg" alt="Stable release: v2.2.0"></a>
7+
<a href="https://github.com/thecodingmachine/kickoff-docker-php/tree/v2.3.0"><img src="https://img.shields.io/badge/stable-v2.3.0-green.svg" alt="Stable release: v2.3.0"></a>
88
<a href="https://github.com/thecodingmachine/kickoff-docker-php/tree/master"><img src="https://img.shields.io/badge/unstable-master-orange.svg" alt="Unstable release: master"></a>
99
<a href="https://travis-ci.org/thecodingmachine/kickoff-docker-php"><img src="https://img.shields.io/travis/thecodingmachine/kickoff-docker-php.svg?label=Travis+CI" alt="Travis CI"></a>
1010
</p>
@@ -123,20 +123,30 @@ and check if everything is OK!
123123

124124
## Orbit commands
125125

126+
**Note:** You can use the `-d` flag to have a more detailed output.
127+
128+
### Main commands
129+
126130
| Command | Description |
127131
|------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------|
128132
| `orbit run` | Displays available Orbit commands. |
129133
| `orbit run kickoff` | Generates all configuration files, builds the NGINX and PHP-FPM images and starts the containers. It's a combo of `build`, `proxy-up` and `up` commands. |
130134
| `orbit run shutdown` | Stops all containers. It's a combo of `down` and `proxy-down` commands. |
135+
| `orbit run workspace` | Connects through ash to the PHP-FPM container. This is where you're able to run useful commands like `composer` and `yarn`. |
136+
| `orbit run mysql-cli` | Opens the MySQL cli as `root`. On environments <> `local`, it will ask you the MySQL `root` password. |
137+
138+
### Others commands
139+
140+
**Note:** you should not use them, unless you know what you're doing!
141+
142+
| Command | Description |
143+
|------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------|
131144
| `orbit run build` | Generates all configuration files and builds the NGINX and PHP-FPM images. |
132145
| `orbit run proxy-up` | Starts the Traefik container. |
133146
| `orbit run up` | Starts all containers without the Traefik container. |
134147
| `orbit run proxy-down` | Stops the Traefik container. |
135148
| `orbit run down` | Stops all containers without the Traefik container. |
136-
| `orbit run workspace` | Connects through ash to the PHP-FPM container. This is where you're able to run useful commands like `composer` and `yarn`. |
137-
| `orbit run mysql-cli` | Opens the MySQL cli as `root`. On environments <> `local`, it will ask you the MySQL `root` password. |
138149

139-
**Note:** You can use the `-d` flag to have a more detailed output.
140150

141151
## Project structure
142152

@@ -163,9 +173,7 @@ caution: it will delete all your data.
163173
|----------------------|--------------------------------------------------------------------------------------|
164174
| `config/project.yml` | Your project configuration values. |
165175
| `config/modules.yml` | The cross-environments configuration values of your modules. |
166-
| `config/app.yml` | The cross-environments configuration values of your PHP application. |
167176
| `config/.env` | The sensitive and environment specific configuration values of your modules. |
168-
| `config/.app.env` | The sensitive and environment specific configuration values of your PHP application. |
169177
| `orbit.yml` | The Orbit's commands of your project. |
170178

171179
Don't hesitate to take a look at those files, as they are provided with nice comments!

config/.app.env.blueprint

-11
This file was deleted.

config/.env.blueprint

+3-5
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,12 @@
1111
ENV=local
1212

1313
# |--------------------------------------------------------------------------
14-
# | Application directory
14+
# | Application directory name
1515
# |--------------------------------------------------------------------------
1616
# |
17-
# | Application directory
17+
# | The PHP application directory name.
1818
# |
19-
# | If your PHP application source is in other directory than 'app'.
20-
# | Change the value below.
21-
# | No trailing slash, relative to kickoff-docker root.
19+
# | Caution: it's not a path.
2220
# |
2321

2422
DIR=app

config/.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
.app.env
21
.env

config/app.yml

-10
This file was deleted.

config/orbit/orbit-build.yml

-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ commands:
8686
- orbit generate -t modules/php-fpm/conf.d/memory-limit.blueprint.ini -o modules/php-fpm/conf.d/memory-limit.ini -e Config,config/.env {{ if debug }}-d{{ end }}
8787
- orbit generate -t modules/php-fpm/php-fpm.d/memory-limit.blueprint.conf -o modules/php-fpm/php-fpm.d/memory-limit.conf -e Config,config/.env {{ if debug }}-d{{ end }}
8888
- orbit generate -t modules/php-fpm/php-fpm.d/security.blueprint.conf -o modules/php-fpm/php-fpm.d/security.conf -e Config,config/.env {{ if debug }}-d{{ end }}
89-
- docker-compose -p {{ .EnvFiles.Config.ENV }}{{ .Values.Project.name }} -f modules/php-fpm/docker-compose.yml build
9089

9190
# |--------------------------------------------------------------------------
9291
# | orbit run nginx-build

modules/graylog/docker-compose.blueprint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services:
66

77

88
graylog-mongo:
9-
image: mongo:3.4.9
9+
image: mongo:3.4.10
1010
container_name: {{ .EnvFiles.Config.ENV }}-{{ .Values.Project.name }}-graylog-mongo
1111
restart: "no"
1212
networks:

modules/mysql/docker-compose.blueprint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ services:
3636
{{ end }}
3737
{{ if eq "local" .EnvFiles.Config.ENV }}
3838
phpmyadmin:
39-
image: phpmyadmin/phpmyadmin:4.7.4-1
39+
image: phpmyadmin/phpmyadmin:4.7.5-1
4040
container_name: {{ .EnvFiles.Config.ENV }}-{{ .Values.Project.name }}-phpmyadmin
4141
restart: "no"
4242
networks:

modules/nginx/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM nginx:1.12.1-alpine
1+
FROM nginx:1.12.2-alpine
22

33
# |--------------------------------------------------------------------------
44
# | Permissions issues workaround

modules/php-fpm/.gitignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
conf.d/memory-limit.ini
22
php-fpm.d/memory-limit.conf
33
php-fpm.d/security.conf
4-
docker-compose.yml
5-
Dockerfile
4+
docker-compose.yml

modules/php-fpm/docker-compose.blueprint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services:
55

66

77
php-fpm:
8-
image: gulnap/kickoff-docker-php-images:php-fpm-7.1.10-v2.2.0
8+
image: gulnap/kickoff-docker-php-images:php-fpm-7.1.11-v2.3.0
99
container_name: {{ .EnvFiles.Config.ENV }}-{{ .Values.Project.name }}-php-fpm
1010
restart: {{ if and (ne "local" .EnvFiles.Config.ENV) (eq false .Values.Modules.graylog.enable) }}unless-stopped{{ else }}"no"{{ end }}
1111
entrypoint: /usr/local/bin/docker-entrypoint.sh

modules/rabbitmq/docker-compose.blueprint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services:
66

77

88
rabbitmq:
9-
image: rabbitmq:3.6.12-management-alpine
9+
image: rabbitmq:3.6.14-management-alpine
1010
container_name: {{ .EnvFiles.Config.ENV }}-{{ .Values.Project.name }}-rabbitmq
1111
restart: {{ if and (ne "local" .EnvFiles.Config.ENV) (eq false .Values.Modules.graylog.enable) }}unless-stopped{{ else }}"no"{{ end }}
1212
hostname: rabbitmq

0 commit comments

Comments
 (0)