Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nickheap/docker-oe117-as
Dockerfile for OpenEdge 11.7 appserver
https://github.com/nickheap/docker-oe117-as
appserver docker dockerfile linux openedge
Last synced: about 2 months ago
JSON representation
Dockerfile for OpenEdge 11.7 appserver
- Host: GitHub
- URL: https://github.com/nickheap/docker-oe117-as
- Owner: NickHeap
- License: mit
- Created: 2018-03-05T23:58:50.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-10T07:26:43.000Z (over 6 years ago)
- Last Synced: 2024-09-29T10:03:20.597Z (3 months ago)
- Topics: appserver, docker, dockerfile, linux, openedge
- Language: OpenEdge ABL
- Size: 15.6 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- 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-as
## docker commands
### Build the docker image
```bash
docker build -t oe117-as:0.1 -t oe117-as:latest .
```### Run the container
```bash
docker run -it --rm --name oe117-as -p 20931:20931 -p 3090:3090 -p 21100-21200:21100-21200 oe117-as:latest
```### Run the container with a mapped volume
```bash
docker run -it --rm --name oe117-as -p 20931:20931 -p 3090:3090 -p 21100-21200:21100-21200 -v S:/workspaces/docker-volumes/appserver:/var/lib/openedge/code oe117-as:latest
```### Run bash in the container
```bash
docker run -it --rm --name oe117-as -p 20931:20931 -p 3090:3090 -p 21100-21200:21100-21200 oe117-as:latest bash
```### Exec bash in the running container
```bash
docker exec -it oe117-as bash
```### Stop the container
```bash
docker stop oe117-as
```### Clean the container
```bash
docker rm oe117-as
```- - -
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.