https://github.com/nickheap2/docker-oe117-rest
Docker oe117 rest image
https://github.com/nickheap2/docker-oe117-rest
Last synced: 5 months ago
JSON representation
Docker oe117 rest image
- Host: GitHub
- URL: https://github.com/nickheap2/docker-oe117-rest
- Owner: NickHeap2
- License: mit
- Created: 2020-03-24T18:35:44.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-24T18:36:15.000Z (over 6 years ago)
- Last Synced: 2025-10-04T09:31:11.946Z (10 months ago)
- Language: Dockerfile
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: code-of-conduct.md
Awesome Lists containing this project
README
# docker-oe117-rest
## Docker commands
### Build the docker image
```bash
docker build -t oe117-rest:0.1 -t oe117-rest:latest .
```
### Run the container
```bash
docker run -it --rm --name oe117-rest -p 80:80 oe117-rest:latest
```
### Run bash in the container
```bash
docker run -it --rm --name oe117-rest -p 80:80 oe117-rest:latest bash
```
### Exec bash in the running container
```bash
docker exec -it oe117-rest bash
```
### Stop the container
```bash
docker stop oe117-rest
```
### Clean the container
```bash
docker rm oe117-rest
```
- - -
Please note that this project is released with a [Contributor Code of Conduct](code-of-conduct.md). By participating in this project you agree to abide by its terms.