diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..9703b47 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM ahmet2mir/showoff:latest + +ENV LANG C.UTF-8 +ENV LC_ALL C.UTF-8 + +ADD . /webapps/showoff + diff --git a/README.md b/README.md new file mode 100644 index 0000000..283db66 --- /dev/null +++ b/README.md @@ -0,0 +1,21 @@ +Ceci est une présentation [ShowOff](http://github.com/schacon/showoff) + +Pour la visionner, il est nécessaire d'executer les commandes suivantes: + +Avec [Docker](https://www.docker.com/) + +```bash + $ docker build . --tag sdouche/presentation-git:latest + $ docker run [--detach] --publish 9090:9090 --name presentation-git sdouche/presentation-git:latest +``` + +Avec [Podman](https://podman.io/) + +```bash + $ podman build . --tag sdouche/presentation-git:latest + $ podman run [--detach] --publish 9090:9090 --name presentation-git sdouche/presentation-git:latest +``` + +Vous pouvez accéder à la présentation avec votre navigateur à +l'adresse http://localhost:9090. + diff --git a/README.txt b/README.txt deleted file mode 100644 index 7a87829..0000000 --- a/README.txt +++ /dev/null @@ -1,13 +0,0 @@ -Ceci est une présentation ShowOff (http://github.com/schacon/showoff) - -Pour la visionner, il est nécessaire d'installer showoff et de lançer -dans le répertoire de la présentation : - - $ gem install showoff - $ git clone git://github.com/sdouche/showoff-presentation-git.git - $ cd showoff-presentation-git - $ showoff serve - -Vous pouvez accéder à la présentation avec votre navigateur à -l'adresse http://localhost:9090. -