Created
March 1, 2016 17:29
-
-
Save lucassmacedo/2b4f838de90b247405d6 to your computer and use it in GitHub Desktop.
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
/** | |
* Documentation: http://docs.azk.io/Azkfile.js | |
*/ | |
// Adds the systems that shape your system | |
systems({ | |
paypal: { | |
// Dependent systems | |
depends: ['mysql'], | |
// More images: http://images.azk.io | |
image: {"docker": "azukiapp/php-fpm:5.6"}, | |
// Steps to execute before running instances | |
provision: [ | |
"npm install", | |
"composer install", | |
"php artisan migrate", | |
], | |
workdir: "/azk/#{manifest.dir}", | |
shell: "/bin/bash", | |
wait: 40, | |
mounts: { | |
'/azk/#{manifest.dir}': sync("."), | |
'/azk/#{manifest.dir}/vendor': persistent("./vendor"), | |
'/azk/#{manifest.dir}/composer.phar': persistent("./composer.phar"), | |
'/azk/#{manifest.dir}/composer.lock': path("./composer.lock"), | |
'/azk/#{manifest.dir}/.env.php': path("./.env.php"), | |
'/azk/#{manifest.dir}/bootstrap/compiled.php': path("./bootstrap/compiled.php"), | |
'/azk/#{manifest.dir}/node_modules': persistent("./node_modules"), | |
}, | |
scalable: {"default": 1}, | |
http: { | |
domains: [ "#{system.name}.#{azk.default_domain}" ] | |
}, | |
ports: { | |
// exports global variables | |
http: "80/tcp", | |
}, | |
envs: { | |
// Make sure that the PORT value is the same as the one | |
// in ports/http below, and that it's also the same | |
// if you're setting it in a .env file | |
APP_DIR: "/azk/#{manifest.dir}", | |
}, | |
}, | |
mysql: { | |
// More info about mysql image: http://images.azk.io/#/mysql?from=docs-full_example | |
image: {"docker": "azukiapp/mysql:5.7"}, | |
shell: "/bin/bash", | |
wait: 45, | |
mounts: { | |
'/var/lib/mysql': persistent("mysql_data"), | |
// to clean mysql data, run: | |
// $ azk shell mysql -c "rm -rf /var/lib/mysql/*" | |
}, | |
ports: { | |
// exports global variables: "#{net.port.data}" | |
data: "3306/tcp", | |
}, | |
envs: { | |
// set instances variables | |
MYSQL_USER : "azk", | |
MYSQL_PASSWORD : "azk", | |
MYSQL_DATABASE : "#{manifest.dir}_development", | |
MYSQL_ROOT_PASSWORD: "azk", | |
}, | |
export_envs: { | |
MYSQL_USER : "#{envs.MYSQL_USER}", | |
MYSQL_PASSWORD: "#{envs.MYSQL_PASSWORD}", | |
MYSQL_HOST : "#{net.host}", | |
MYSQL_PORT : "#{net.port.data}", | |
MYSQL_DATABASE: "#{envs.MYSQL_DATABASE}" | |
}, | |
}, | |
phpmyadmin: { | |
// Dependent systems | |
depends: ["mysql"], | |
// More images: http://images.azk.io | |
image: { docker: "reduto/phpmyadmin" }, | |
wait: {retry: 20, timeout: 1000}, | |
scalable: {default: 1, limit: 1}, | |
http: { | |
domains: [ "#{system.name}.#{azk.default_domain}" ] | |
}, | |
ports: { | |
http: "80/tcp", | |
}, | |
}, | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment