https://github.com/brightcommerce/docker-ubuntu
Dockerfile to build an Ubuntu v14.04 base image for Docker containers.
https://github.com/brightcommerce/docker-ubuntu
Last synced: 1 day ago
JSON representation
Dockerfile to build an Ubuntu v14.04 base image for Docker containers.
- Host: GitHub
- URL: https://github.com/brightcommerce/docker-ubuntu
- Owner: brightcommerce
- License: mit
- Created: 2014-09-11T06:08:21.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-09-11T07:07:12.000Z (almost 12 years ago)
- Last Synced: 2025-01-10T14:29:30.638Z (over 1 year ago)
- Language: Shell
- Size: 113 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changelog.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker Ubuntu
Dockerfile to build an Ubuntu v14.04 base image for Docker containers. This image adds some essential tools such as wget, sudo, pwgen, unzip, logrotate, supervisor, net-tools, language-pack-en and software-properties-common.
## Table of Contents
- [Version](#version)
- [How To Use](#how-to-use)
- [Credit](#credit)
## Version
The current release (v14.04.20140911) contains scripts to install Ubuntu 14.04 LTS (Trusty Tahr), and uses the [official Ubuntu base image](https://registry.hub.docker.com/_/ubuntu/). Our version numbers will reflect the version of Ubuntu being installed.
## How To Use
This image is intended for use as the base image in app and service containers. At the top of your `Dockerfile` specify the `FROM` key:
``` bash
FROM brightcommerce/ubuntu:14.04.20140911
```
Alternatively, if you want to build the image yourself, pull the latest version of the image from the Docker Index. This is the recommended method of installation as it is easier to update the image in the future. These builds are performed by the **Docker Trusted Build** service.
``` bash
docker pull brightcommerce/ubuntu:14.04.20140911
```
Alternately you can build the image yourself:
``` bash
git clone https://github.com/brightcommerce/docker-ubuntu.git
cd docker-ubuntu
docker build -t="$USER/ubuntu" .
```
## Credit
This repository was based on the work of [docker-ubuntu by Sameer Naik](https://github.com/sameersbn/docker-ubuntu).