![Gitter](https://badges.gitter.im/Join Chat.svg)
Base docker image to run Node applications in azk
- Ubuntu 14.04
- Git
- VIM
- npm
Database:
- PostgreSQL client
- MySQL client
- MongoDB
- SQLite3
Example of using this image with azk:
/**
* Documentation: http://docs.azk.io/Azkfile.js
*/
// Adds the systems that shape your system
systems({
"my-app": {
// Dependent systems
depends: [], // postgres, mysql, mongodb ...
// More images: http://images.azk.io
image: {"docker": "azukiapp/node"},
// Steps to execute before running instances
provision: [
"npm install",
],
workdir: "/azk/#{manifest.dir}",
shell: "/bin/bash",
command: "npm start",
wait: {"retry": 20, "timeout": 1000},
mounts: {
'/azk/#{manifest.dir}': path("."),
},
scalable: {"default": 1},
http: {
// my-app.dev.azk.io
domains: [ "#{system.name}.#{azk.default_domain}" ]
},
ports: {
http: "8000"
},
envs: {
// set instances variables
NODE_ENV: "dev",
},
},
});
To create the image azukiapp/node
, execute the following command on the docker-node folder:
$ docker build -t azukiapp/node 0.10/
To run the image and bind to port 8000:
$ docker run -it --rm --name my-app -p 8000:8000 -v "$PWD":/myapp -w /myapp azukiapp/node node server.js
# with azk
$ azk logs my-app
# with docker
$ docker logs <CONTAINER_ID>
Azuki Dockerfiles distributed under the Apache License.