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

Commit 141aa38

Browse files
author
Julien Neuhart
authored
fixing MySQL secrets: were not generated.. (#43)
* fixing MySQL secrets: were not generated.. * updating README.md: typo
1 parent 90e3eff commit 141aa38

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
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.0.2"><img src="https://img.shields.io/badge/stable-v2.0.2-green.svg" alt="Stable release: v2.0.2"></a>
7+
<a href="https://github.com/thecodingmachine/kickoff-docker-php/tree/v2.0.3"><img src="https://img.shields.io/badge/stable-v2.0.3-green.svg" alt="Stable release: v2.0.3"></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>
@@ -385,7 +385,7 @@ This should be used only in others environments.
385385

386386
Last but not least, start your `staging` environment by running `orbit run build up`.
387387

388-
**Note:** don't run `kickoff` command, as we only want one Traefik container!
388+
**Note:** Don't run `kickoff` command, as we only want one Traefik container!
389389

390390
If your virtual host is `my-awesome-project.com`, your `production` applications will be available under `*.my-awesome-project.com`
391391
while your `staging` applications will be available under `*-staging.my-awesome-project.com`! :metal:

config/orbit/orbit-build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,8 @@ commands:
114114
{{ if eq true .Values.Modules.mysql.enable }}
115115
- orbit generate -t modules/mysql/docker-compose.blueprint.yml -o modules/mysql/docker-compose.yml -v Project,config/project.yml;Modules,config/modules.yml -e Config,config/.env
116116
- orbit generate -t modules/mysql/docker-entrypoint-initdb.d/databases.blueprint.sql -o modules/mysql/docker-entrypoint-initdb.d/databases.sql -v Modules,config/modules.yml -e Config,config/.env
117+
- orbit generate -t modules/mysql/secrets/mysql_password.blueprint.txt -o modules/mysql/secrets/mysql_password.txt -e Config,config/.env
118+
- orbit generate -t modules/mysql/secrets/mysql_root_password.blueprint.txt -o modules/mysql/secrets/mysql_root_password.txt -e Config,config/.env
117119
{{ else if eq "windows" .Os }}
118120
- cmd.exe /c echo Skipping MySQL configuration files generation ...
119121
{{ else }}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{{ .EnvFiles.Kickoff.MYSQL_PASSWORD }}
1+
{{ .EnvFiles.Config.MYSQL_PASSWORD }}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{{ .EnvFiles.Kickoff.MYSQL_ROOT_PASSWORD }}
1+
{{ .EnvFiles.Config.MYSQL_ROOT_PASSWORD }}

0 commit comments

Comments
 (0)