Skip to content

Instantly share code, notes, and snippets.

#gives you details on the installed version of Docker
docker version
#runs a container from the image (if it has not a copy of the image in its cache, will download it beforehand)
docker container run hello-world
#getting a list of running containers
docker container ls
#getting a list of all containers
docker container ls --all
@ftabashir
ftabashir / ActivityScope.kt
Created May 15, 2020 17:39 — forked from marcellogalhardo/ActivityScope.kt
Scoping Dagger Components with ViewModels
@Scope
@Retention(AnnotationRetention.RUNTIME)
annotation class ActivityScope