Skip to content

DTan13/EYRC-Task0-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EYRC-Task0-docker

This repository is for Task-0 of EYRC which is setting up software required for competition.

Usage

Install Docker for your OS

Clone the Repo

git clone https://github.com/DTan13/EYRC-Task0-docker.git

Get your Team ID

Get your environment.yml file

Copy content of your environment.yml file to environment.yml in cloned repository

Using only for Miniconda

Build Image

cd EYRC-Task0-docker

docker image build -t <Your_Team_ID>:latest --build-arg Team_ID=<Your_Team_ID> .

Create Container using built Image

docker container create -it -v </path/to/your/code/directory>:/code/<Your_Team_ID>/codes --name <Your_Team_ID> <Your_Team_ID>:latest

Start Container

docker container start -ai <Your_Team_ID>

Contributing

Reporting Issues

Open a new Issue

Please include the following with each issue:

  • Your operating system

  • Your version of Docker

  • Reproducible steps (1, 2, 3) that cause the issue

  • What you expected to see, versus what you actually saw

Contributing Fixes

  • Fork the repository

  • Make changes to fix the Issue

  • Test your changes

  • Create a Pull Request

Made with 🖤 by DTan13