Skip to content

Instantly share code, notes, and snippets.

@gerardo-junior
Last active April 22, 2016 03:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gerardo-junior/51c8473933c6b497bb9f5c9b62ef797f to your computer and use it in GitHub Desktop.
Save gerardo-junior/51c8473933c6b497bb9f5c9b62ef797f to your computer and use it in GitHub Desktop.
Azk laravel (php + mysql)
/**
* Documentation: http://docs.azk.io/pt-BR/azkfilejs/
*/
// Adds the systems that shape your system
systems({
laravel: {
// Dependent systems
depends: ['mysql'],
// More images: http://images.azk.io
image: {"docker": "azukiapp/php-fpm:5.6"},
// Steps to execute before running instances
provision: ["composer install",],
workdir: "/azk/#{manifest.dir}",
shell: "/bin/bash",
wait: 20,
mounts: {
'/azk/#{manifest.dir}': path("."), // o sync para as vezes por isso mudei para o path
'/azk/#{manifest.dir}/vendor': persistent("./vendor"),
'/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: 120,
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: {
// check this gist to configure your database
// https://gist.github.com/gullitmiranda/62082f2e47c364ef9617
//DATABASE_URL: "mysql2://#{envs.MYSQL_USER}:#{envs.MYSQL_PASSWORD}@#{net.host}:#{net.port.data}/#{envs.MYSQL_DATABASE}",
// or use splited 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}"
},
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment