Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nttlimitedrd/docker-containers
Docker build files for research related software containers
https://github.com/nttlimitedrd/docker-containers
Last synced: 20 days ago
JSON representation
Docker build files for research related software containers
- Host: GitHub
- URL: https://github.com/nttlimitedrd/docker-containers
- Owner: NTTLimitedRD
- Created: 2015-10-15T22:51:44.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-10-19T00:18:36.000Z (about 9 years ago)
- Last Synced: 2023-02-26T16:35:47.837Z (almost 2 years ago)
- Language: Shell
- Size: 129 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker containers for Dimension Data R&D research projects
This repository contains containers for Docker for applications that are under research
## Using Docker on Dimension Data Cloud
1. Deploy the Ubuntu 14.04 base image in the MCP
1a. Ensure that there is plenty of disk space, since the default image comes with 10Gb disk.
if you add a second 20GB disk to the server, you can quickly expand the root fs like this:
```bash
pvcreate /dev/sdb
vgextend rootvol00 /dev/sdb
lvextend --size +20G /dev/mapper/rootvol00-rootlvol00
resize2fs /dev/mapper/rootvol00-rootlvol00
```2. Login to the server, run "wget -qO- https://get.docker.com/ | sh" to install docker-engine
Now you have 2 choices, use from docker hub or use from source
## Using these containers from Docker Hub
3. Go to https://hub.docker.com/u/dimensiondataresearch/dashboard/ and choose an image
4. Pull the image using the instructions on the repository page## Building these containers from source
3. Install the git client "apt-get install git"
4. Clone this repository
```git clone http://github.com/DimensionDataCBUSydney/docker-containers"```
5. Choose the application
```cd docker-containers/{app}```
6. Build the container
```docker build -t test_container .```
7. Run a container with the image:
```docker run -it test_container```