7. Contributing (TBC)¶
This section describes how to contribute to this documentation.
7.1. References¶
New references can be added in bibtext format to source/references.bib.
Please note that the reference keys should be in Snake case (stylized as snake_case) [sna21]. This refers to the style of writing in which each space is replaced by an underscore (_) character, and the first letter of each word written in lowercase.
The publication year (if any) should be appended to the reference key.
For example:
@Book{1987_nelson,
author = {Edward Nelson},
title = {Radically Elementary Probability Theory},
publisher = {Princeton University Press},
year = {1987}
}
7.2. Building and publishing Docker images to DockerHub¶
cd research-software-development-tutorials/docs/source/dockerfiles/developer-environment
docker build –tag development-environment:1.0-tensorflow-notebook .
docker tag development-environment:1.0-tensorflow-notebook researchdevresources/development-environment:1.0-tensorflow-notebook
docker login
docker push researchdevresources/development-environment:1.0-tensorflow-notebook
docker run –rm -it -e GRANT_SUDO=yes –user root researchdevresources/development-environment /bin/bash
- sna21
Snake case. February 2021. Page Version ID: 1007486237. URL: https://en.wikipedia.org/w/index.php?title=Snake_case&oldid=1007486237 (visited on 2021-05-01).