dynaum / docker-ubuntu

Ubuntu Dockerfile for trusted automated Docker builds.

Home Page:http://images.azk.io/#/ubuntu

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Base docker image to run Linux applications in azk

Versions (tags)

- [`latest`, `trusty`, `14`, `14.04`](https://github.com/azukiapp/docker-ubuntu/blob/master/trusty/Dockerfile)

Image content:

  • Ubuntu 14.04
  • Git
  • VIM

Usage with azk

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/ubuntu"},
    // Steps to execute before running instances
    provision: [
      // "./script.sh",
    ],
    workdir: "/azk/#{manifest.dir}",
    shell: "/bin/bash",
    command: "# command to run app. i.g.: `./start.sh`",
    wait: {"retry": 20, "timeout": 1000},
    mounts: {
      '/azk/#{manifest.dir}': path("."),
    },
    scalable: {"default": 1},
    http: {
      domains: [ "#{system.name}.#{azk.default_domain}" ]
    },
    ports: {
      // http: "8080"
    },
    envs: {
      // set instances variables
      EXAMPLE: "value",
    },
  },
});

Usage with docker

To create the image azukiapp/ubuntu, execute the following command on the docker-ubuntu folder:

$ docker build -t azukiapp/ubuntu .

To run the image and bind to port 8080:

$ docker run -it --rm --name my-app -p 8080:8080 -v "$PWD":/myapp -w /myapp azukiapp/ubuntu script.sh

Logs

# with azk
$ azk logs my-app

# with docker
$ docker logs <CONTAINER_ID>

License

Azuki Dockerfiles distributed under the Apache License.

About

Ubuntu Dockerfile for trusted automated Docker builds.

http://images.azk.io/#/ubuntu

License:Apache License 2.0


Languages

Language:Makefile 100.0%