Difference between revisions of "Docker install"
Jump to navigation
Jump to search
(Created page with "== Dockerfile == The Dockerfile for the build can be seen here: <source lang=bash> https://github.com/nmr-relax/relax/blob/master/devel_scripts/Docker/Ubuntu_16_04_relax/Docke...") |
|||
(10 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
== Dockerfile == | == Dockerfile == | ||
The Dockerfile for the build can be seen here: | The Dockerfile for the build can be seen here: | ||
+ | * https://github.com/tlinnet/docker_relax | ||
+ | * https://hub.docker.com/r/tlinnet/relax | ||
+ | |||
+ | To get image | ||
<source lang=bash> | <source lang=bash> | ||
− | + | docker pull tlinnet/relax | |
</source> | </source> | ||
+ | See images | ||
+ | <source lang=bash> | ||
+ | docker images | ||
+ | </source> | ||
+ | == Run the image on mac == | ||
+ | See the README on Github for newest info how to run: | ||
+ | |||
+ | https://github.com/tlinnet/docker_relax/blob/master/README.md#runmac | ||
+ | |||
+ | == Update relax code == | ||
+ | To update, do this | ||
+ | |||
+ | <source lang=bash> | ||
+ | # Go into container | ||
+ | dr | ||
+ | |||
+ | # Inside container | ||
+ | cd $HOME/relax | ||
+ | git pull | ||
+ | </source> | ||
== See also == | == See also == | ||
[[Category:Installation]] | [[Category:Installation]] |
Latest revision as of 12:20, 27 October 2017
Dockerfile
The Dockerfile for the build can be seen here:
To get image
docker pull tlinnet/relax
See images
docker images
Run the image on mac
See the README on Github for newest info how to run:
https://github.com/tlinnet/docker_relax/blob/master/README.md#runmac
Update relax code
To update, do this
# Go into container
dr
# Inside container
cd $HOME/relax
git pull