Skip to content

Instantly share code, notes, and snippets.

@chebyte
Created August 19, 2020 14:23
Show Gist options
  • Save chebyte/2890bb4b5341eddec47c632d4dfee93c to your computer and use it in GitHub Desktop.
Save chebyte/2890bb4b5341eddec47c632d4dfee93c to your computer and use it in GitHub Desktop.
Docker for ubuntu
version: '3.7'
services:
ubuntu:
image: ubuntu:18.04
volumes:
- .:/curso
working_dir: /curso
@chebyte
Copy link
Author

chebyte commented Aug 19, 2020

Si no queres o no tenes instalado docker-compose podes hacerlo directamente con docker de la siguiente forma

docker run -it -w /curso -v "/TUCARPETALOCAL:/curso" ubuntu:18.04 /bin/bash

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment