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
- Host: GitHub
- URL: https://github.com/bdhammel/dl-dev-env
- Owner: bdhammel
- Created: 2019-03-24T17:28:58.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-11-22T04:31:35.000Z (almost 3 years ago)
- Last Synced: 2024-04-21T11:20:25.566Z (over 1 year ago)
- Topics: deep-learning, docker, python, ubuntu1804
- Language: Dockerfile
- Size: 14.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
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
```