Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nickheap/docker-oe117-setup
Setup image for generating response.ini files
https://github.com/nickheap/docker-oe117-setup
docker dockerfile linux openedge
Last synced: about 1 month ago
JSON representation
Setup image for generating response.ini files
- Host: GitHub
- URL: https://github.com/nickheap/docker-oe117-setup
- Owner: NickHeap
- License: mit
- Created: 2018-03-06T00:28:56.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-10T07:29:08.000Z (almost 7 years ago)
- Last Synced: 2024-11-11T11:37:49.633Z (3 months ago)
- Topics: docker, dockerfile, linux, openedge
- Size: 7.81 KB
- Stars: 0
- 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-setup
## docker commands
### Build the docker image
```bash
docker build -t oe117-setup:0.1 -t oe117-setup:latest .
```### Run the container
```bash
docker run -it --rm --name oe117-setup oe117-setup:latest bash
```### Install openedge in the container
```bash
/install/openedge/proinst
```### Do an install for the db server
N to install as full version
OpenEdge Enterprise RDBMS
Say No to enabling explorer
Continue with sql enabled
English - American as language and make default
Collation - American,United_States,ISO8859-1,Basic,Basic
Date format - dmy
Number format - (comma, period)
Copy the scripts - No### Do an install for the appserver
N to install as full version
OpenEdge Application Server
Say No to enabling explorer
Say No to using Sonic ESB
Say No to Webspeed
English - American as language and make default
Charset,CollationCase - American,United_States,ISO8859-1,Basic,Basic
Date format - dmy
Number format - (comma, period)
Web Services Adapter URL -
WSA Authentication - No
Install - yes
Copy the scripts - No### Do an install for webspeed
N to install as full version
OpenEdge Application Server
4GL Development System
Say No to enabling explorer
Say No to using Sonic ESB
Say No to Webspeed
English - American as language and make default
Charset,CollationCase - American,United_States,ISO8859-1,Basic,Basic
Date format - dmy
Number format - (comma, period)
Web Services Adapter URL -
WSA Authentication - No
Install - yes
Copy the scripts - No### Copy the response.ini, progress.cfg & ubroker.properties from the install to use in other images
```bash
docker cp oe117-setup:/usr/dlc/install/response.ini conf/
docker cp oe117-setup:/usr/dlc/progress.cfg conf/
docker cp oe117-setup:/usr/dlc/properties/ubroker.properties conf/
```### Stop the container
```bash
docker stop oe117-setup
```### Clean the container
```bash
docker rm oe117-setup
```- - -
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.