An open API service indexing awesome lists of open source software.

https://github.com/bdhammel/dl-dev-env

Deep Learning development Docker files
https://github.com/bdhammel/dl-dev-env

deep-learning docker python ubuntu1804

Last synced: 28 days ago
JSON representation

Deep Learning development Docker files

Awesome Lists containing this project

README

          

# Docker commands

## Build image

```
docker build -t dl_docker -f Dockerfile .
```

## Starting and Stopping containers

```
docker start # Start a stopped container
docker start -a # Reattach to running container
docker stop # Stop container
```

## Other commands

```
$ docker images # list all built docker images
$ docker stats # give stats of running docker containerssaf
$ docker ps
-a # view all containers — active and inactive
-l # view the latest container you created
$ docker continer list # list all avalible containers
```