-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
69 additions
and
122 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
version: '3' | ||
services: | ||
app: | ||
mellivora: | ||
image: mellivora | ||
ports: | ||
- 80:80 | ||
|
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,46 @@ | ||
version: '3' | ||
services: | ||
codecept: | ||
image: eccube/php7-ext-codeception | ||
depends_on: | ||
- chrome | ||
- mellivora-test | ||
- db-test | ||
volumes: | ||
- .:/project | ||
chrome: | ||
image: 'selenium/standalone-chrome-debug' | ||
ports: | ||
- '5900' | ||
- '4444' | ||
dns: 8.8.4.4 | ||
environment: | ||
- no_proxy=localhost | ||
mellivora-test: | ||
image: mellivora-test | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
environment: | ||
MELLIVORA_CONFIG_DB_ENGINE: mysql | ||
MELLIVORA_CONFIG_DB_HOST: db-test | ||
MELLIVORA_CONFIG_DB_PORT: 3306 | ||
MELLIVORA_CONFIG_DB_NAME: mellivora | ||
MELLIVORA_CONFIG_DB_USER: meldbuser | ||
MELLIVORA_CONFIG_DB_PASSWORD: password | ||
MELLIVORA_CONFIG_SITE_URL: http://mellivora-test/ | ||
MELLIVORA_CONFIG_SITE_URL_STATIC_RESOURCES: http://mellivora-test/ | ||
volumes: | ||
- .:/var/www/mellivora | ||
- composerdependencies:/var/www/mellivora/include/thirdparty/composer | ||
links: | ||
- db-test | ||
db-test: | ||
image: mysql:5.6 | ||
environment: | ||
MYSQL_DATABASE: mellivora | ||
MYSQL_USER: meldbuser | ||
MYSQL_PASSWORD: password | ||
MYSQL_ROOT_PASSWORD: password | ||
volumes: | ||
composerdependencies: |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1 +1 @@ | ||
/* This file will be automatically generated by the build_sql_dump script */ | ||
/* This file was automatically generated by the test runner */ |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
DROP DATABASE IF EXISTS mellivora_ci; | ||
CREATE DATABASE IF NOT EXISTS mellivora_ci CHARACTER SET utf8 COLLATE utf8_general_ci; | ||
USE mellivora_ci; | ||
DROP DATABASE IF EXISTS mellivora; | ||
CREATE DATABASE IF NOT EXISTS mellivora CHARACTER SET utf8 COLLATE utf8_general_ci; | ||
USE mellivora; | ||
|
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