Skip to content

Instantly share code, notes, and snippets.

@everaldo
Last active September 15, 2016 22:14
Show Gist options
  • Select an option

  • Save everaldo/8751ce3ad26a89d1fe5954ee10d2fe2a to your computer and use it in GitHub Desktop.

Select an option

Save everaldo/8751ce3ad26a89d1fe5954ee10d2fe2a to your computer and use it in GitHub Desktop.
Utilizo para criar um servidor no diretório atual, nas aulas de Desenvolvimento Web para Jogos
docker run -d -p 8000:8000 -v $PWD:/app -w /app python:3.6 python3 -m http.server 8000
#Tentar substituir por
docker run -d -p 8000:8000 -v $PWD:/app -w /app python:3.6 python3 -m http.server
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment