An open API service indexing awesome lists of open source software.

https://github.com/compscidr/docker-ubuntu1604java8

Ubuntu 16.04 with oracle java 8 in a docker image. Dockerfile to create from scratch and instructions on docker hub
https://github.com/compscidr/docker-ubuntu1604java8

Last synced: 3 months ago
JSON representation

Ubuntu 16.04 with oracle java 8 in a docker image. Dockerfile to create from scratch and instructions on docker hub

Awesome Lists containing this project

README

          

# docker-ubuntu1604java8
The following instructions assume you already have docker install correctly.

## Build the Image from Scratch
If you wish to create the image yourself from scratch, you can checkout the project and use the provided Dockerfile to build the image.
```
git clone https://github.com/drhetnet/docker-ubuntu1604java8.git
cd docker-ubuntu1604java8
docker build -t drhetnet/ubuntu1604java8:v1 .
```

## Docker Hub
Alternatively, if you'd like to use the image commited to dockerhub, you can use the following command:
```
docker pull drhetnet/ubuntu1604java8
```

## Running the Container
After this you should see the image listed when you issue a `docker images` command. You can run the container with:
```
docker run drhetnet/docker-ubuntu1604java8:v1
```