{"id":19411800,"url":"https://github.com/nickheap2/docker-oe117-db","last_synced_at":"2026-05-08T06:32:56.594Z","repository":{"id":128963640,"uuid":"144910201","full_name":"NickHeap2/docker-oe117-db","owner":"NickHeap2","description":"Dockerfile for OpenEdge 11.7 database","archived":false,"fork":false,"pushed_at":"2020-05-10T12:27:23.000Z","size":54,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-25T02:34:40.052Z","etag":null,"topics":["database","docker","dockerfile","linux","openedge"],"latest_commit_sha":null,"homepage":null,"language":"OpenEdge ABL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/NickHeap2.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"code-of-conduct.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-08-15T22:39:37.000Z","updated_at":"2020-05-10T12:27:25.000Z","dependencies_parsed_at":"2023-04-27T19:18:16.440Z","dependency_job_id":null,"html_url":"https://github.com/NickHeap2/docker-oe117-db","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/NickHeap2/docker-oe117-db","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NickHeap2%2Fdocker-oe117-db","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NickHeap2%2Fdocker-oe117-db/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NickHeap2%2Fdocker-oe117-db/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NickHeap2%2Fdocker-oe117-db/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NickHeap2","download_url":"https://codeload.github.com/NickHeap2/docker-oe117-db/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NickHeap2%2Fdocker-oe117-db/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279000722,"owners_count":26082894,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-08T02:00:06.501Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["database","docker","dockerfile","linux","openedge"],"created_at":"2024-11-10T12:23:12.209Z","updated_at":"2025-10-09T01:17:08.851Z","avatar_url":"https://github.com/NickHeap2.png","language":"OpenEdge ABL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# docker-oe117-db\n\n## docker commands\n\n### Build the docker image\n\n```bash\ndocker build -t oe117-db:0.1 -t oe117-db:latest .\n```\n\n### Run the container\n\n```bash\ndocker run -it --rm --name oe117-db -p 20666:20666 -p 20670-20700:20670-20700 oe117-db:latest\n```\n\n### Run the container with a mapped volume for data\n\n```bash\ndocker run -it --rm --name oe117-db -p 20666:20666 -p 20670-20700:20670-20700 -v S:/workspaces/docker-volumes/sports2000:/var/lib/openedge/data oe117-db:latest\n```\n\n### Run the container with a mapped volume for data and one for code like triggers\n\n```bash\ndocker run -it --rm --name oe117-db -p 20666:20666 -p 20670-20700:20670-20700 -v S:/workspaces/docker-volumes/sports2000:/var/lib/openedge/data -v S:/workspaces/docker-volumes/sports2000/code:/var/lib/openedge/code oe117-db:latest\n```\n\n### Run the container with a mapped volume and rebuild database from sports2000\n\n```bash\ndocker run -it --rm --name oe117-db -p 20666:20666 -p 20670-20700:20670-20700 -v S:/workspaces/docker-volumes/sports2000:/var/lib/openedge/data -e OPENEDGE_REBUILD=true -e OPENEDGE_BASE=sports2000 oe117-db:latest\n```\n\n### Run the container with a mapped volume for data init and create db inside container\n\n```bash\ndocker run -it --rm --name oe117-db -p 20666:20666 -p 20670-20700:20670-20700 -v S:/workspaces/docker-volumes/sports2000/init:/var/lib/openedge/data/init -e OPENEDGE_REBUILD=true -e OPENEDGE_DB=sports2000 -e OPENEDGE_BASE=empty8 -e OPENEDGE_UTF8=true oe117-db:latest\n```\n\n### Run the container with a mapped volume for data init with utf8\n\n```bash\ndocker run -it --rm --name oe117-db -p 20666:20666 -p 20670-20700:20670-20700 -v S:/workspaces/docker-volumes/sports2000:/var/lib/openedge/data -e OPENEDGE_DB=sports2000 -e OPENEDGE_UTF8=true oe117-db:latest\n```\n\n### Run bash in the container\n\n```bash\ndocker run -it --rm --name oe117-db -p 20666:20666 -p 20670-20700:20670-20700 oe117-db:latest bash\n```\n\n### Exec bash in the running container\n\n```bash\ndocker exec -it oe117-db bash\n```\n\n### Stop the container\n\n```bash\ndocker stop oe117-db\n```\n\n### Clean the container\n\n```bash\ndocker rm oe117-db\n```\n\n- - -\n\nPlease 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.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnickheap2%2Fdocker-oe117-db","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnickheap2%2Fdocker-oe117-db","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnickheap2%2Fdocker-oe117-db/lists"}