diff options
Diffstat (limited to 'OS')
-rw-r--r-- | OS/Fedora/README.md | 32 |
1 files changed, 24 insertions, 8 deletions
diff --git a/OS/Fedora/README.md b/OS/Fedora/README.md index 5090799..df6a92f 100644 --- a/OS/Fedora/README.md +++ b/OS/Fedora/README.md @@ -1,10 +1,26 @@ -docker-images OS : Fedora 21 -============================ +# STARTX OS docker-images OS : Fedora -**Description** -Based on the [tutum fedora](https://registry.hub.docker.com/u/tutum/fedora) Dockerfile +## Running from docker registry -**Usage** - ``` - docker run --name="test-fedora" -d startx/os-fedora - ``` + # docker run -d -p 22 startx/fedora + +## Running from local Dockerfile + +### Building docker image +Copy the sources to your docker host + + # mkdir startx-docker-images; + # git clone https://github.com/startxfr/docker-images.git startx-docker-images/ + # cd startx-docker-images/OS/Fedora/ + +and build the container + + # docker build --rm -t <username>/fedora . + +### Running local image + + # docker run -d -p 22 <username>/ssh + +## Accessing server + + # ssh root@localhost |