-
Notifications
You must be signed in to change notification settings - Fork 769
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added support for multiple-compose files
- Loading branch information
Abhishek
committed
Jan 3, 2017
1 parent
9c3fdaa
commit 8e7bb17
Showing
17 changed files
with
712 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
script/test/fixtures/multiple-compose-files/docker-k8s.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
version: "2" | ||
|
||
services: | ||
mariadb: | ||
image: centos/mariadb | ||
ports: | ||
- "3306" | ||
environment: | ||
MYSQL_ROOT_PASSWORD: kubernetes | ||
MYSQL_DATABASE: kubernetes | ||
MYSQL_PASSWORD: kubernetes | ||
MYSQL_USER: kubernetes | ||
volumes: | ||
- /var/lib/mysql | ||
|
||
etherpad: | ||
image: centos/etherpad | ||
ports: | ||
- "80:9001" | ||
depends_on: | ||
- mariadb | ||
environment: | ||
DB_HOST: kubernetes | ||
DB_DBID: kubernetes | ||
DB_PASS: kubernetes | ||
DB_PORT: kubernetes | ||
DB_USER: kubernetes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
version: "2" | ||
|
||
services: | ||
mariadb: | ||
image: centos/mariadb | ||
ports: | ||
- "3307" | ||
environment: | ||
MYSQL_ROOT_PASSWORD: openshift | ||
MYSQL_DATABASE: openshift | ||
MYSQL_PASSWORD: openshift | ||
MYSQL_USER: openshift | ||
volumes: | ||
- /var/lib/mysql | ||
|
||
etherpad: | ||
image: centos/etherpad | ||
ports: | ||
- "80:9001" | ||
depends_on: | ||
- mariadb | ||
environment: | ||
DB_HOST: openshift | ||
DB_DBID: openshift | ||
DB_PASS: openshift | ||
DB_PORT: openshift | ||
DB_USER: openshift |
Oops, something went wrong.