https://github.com/nickheap2/docker-oe117-ws
Docker webspeed
https://github.com/nickheap2/docker-oe117-ws
Last synced: about 1 month ago
JSON representation
Docker webspeed
- Host: GitHub
- URL: https://github.com/nickheap2/docker-oe117-ws
- Owner: NickHeap2
- License: mit
- Created: 2019-12-10T11:36:33.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-12-10T11:49:06.000Z (over 6 years ago)
- Last Synced: 2025-02-25T02:34:42.643Z (over 1 year ago)
- Language: Shell
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-oe117-ws
## Port details
## Docker commands
### Build the docker image
```bash
docker build -t oe117-ws:0.1 -t oe117-ws:latest .
```
### Run the container
```bash
docker run -it --rm --name oe117-ws -p 5162:5162/udp -p 20931:20931 -p 3055:3055 -p 3202-3502:3202-3502 oe117-ws:latest
```
### Run the container with a mapped volume
```bash
docker run -it --rm --name oe117-ws -p 3055:3055 -p 3202-3388:3202-3388 -p 3390-3502:3390-3502 -v S:/workspaces/docker-volumes/webspeed:/var/lib/openedge/code -v S:/workspaces/docker-volumes/webspeed/logs:/usr/wrk oe117-ws:latest
```
### Run bash in the container
```bash
docker run -it --rm --name oe117-ws -p 5162:5162/udp -p 20931:20931 -p 3055:3055 -p 3202-3502:3202-3502 oe117-ws:latest bash
```
### Exec bash in the running container
```bash
docker exec -it oe117-ws bash
```
### Stop the container
```bash
docker stop oe117-ws
```
### Clean the container
```bash
docker rm oe117-ws
```