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
- Host: GitHub
- URL: https://github.com/compscidr/docker-ubuntu1604java8
- Owner: compscidr
- Created: 2016-11-22T22:02:53.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T11:56:17.000Z (over 2 years ago)
- Last Synced: 2025-09-28T18:42:00.970Z (8 months ago)
- Size: 4.88 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```