Skip to content

Instantly share code, notes, and snippets.

@darknoon29
Last active November 3, 2016 13:11
Show Gist options
  • Save darknoon29/3c7c45ef0440a0a1d3476c897c904809 to your computer and use it in GitHub Desktop.
Save darknoon29/3c7c45ef0440a0a1d3476c897c904809 to your computer and use it in GitHub Desktop.
Docker
Récupération de la machine:
1 .A partir du dépot OGSpy
docker build -t ogsteam/ogspy .
ou à partir de docker hub:
docker pull darknoon29/ogspy
2.Création du container et execution avec port
docker run -d -p80:80 --name ogspy_container ogsteam/ogspy
3. Le docker est désormais disponible sur votre navigateur
http://127.0.0.1
Commandes utiles:
Liste des container
docker ps -a
Suppression d'un container
docker stop ogspy_container
docker rm ogspy_container
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment