{"id":18556054,"url":"https://github.com/php-sap/docker-kralik","last_synced_at":"2025-10-25T02:03:38.018Z","repository":{"id":202608366,"uuid":"237993932","full_name":"php-sap/docker-kralik","owner":"php-sap","description":"PHP docker image for Gregor Kraliks SAPNWRFC module","archived":false,"fork":false,"pushed_at":"2024-07-31T14:49:31.000Z","size":26,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-24T13:51:17.629Z","etag":null,"topics":["docker","docker-image","dockerfile","php","php-module","php7","php8","sap","sap-netweaver-rfc","sapnwrfc"],"latest_commit_sha":null,"homepage":"","language":"PHP","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/php-sap.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"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":"2020-02-03T15:11:48.000Z","updated_at":"2024-07-31T14:49:35.000Z","dependencies_parsed_at":null,"dependency_job_id":"72da97d2-d875-4e86-b7ea-3eb4b6053fa2","html_url":"https://github.com/php-sap/docker-kralik","commit_stats":null,"previous_names":["php-sap/docker-kralik"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/php-sap%2Fdocker-kralik","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/php-sap%2Fdocker-kralik/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/php-sap%2Fdocker-kralik/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/php-sap%2Fdocker-kralik/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/php-sap","download_url":"https://codeload.github.com/php-sap/docker-kralik/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248134943,"owners_count":21053573,"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","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":["docker","docker-image","dockerfile","php","php-module","php7","php8","sap","sap-netweaver-rfc","sapnwrfc"],"created_at":"2024-11-06T21:28:52.798Z","updated_at":"2025-10-25T02:03:32.999Z","avatar_url":"https://github.com/php-sap.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PHP docker image for SAP Netweaver RFC\n\nThis image compiles [Gregor Kraliks `sapnwrfc` PHP module][kralik] for PHP 8.x.\n\n## Usage\n\n**First you need to [download the SAP Netweaver][sapnwrfcsdk] RFC SDK 7.50 for\nLinux and save it into this directory as `sapnwrfc-sdk-7.50.tar.gz`.**\n\nBuild default docker image based on `php:8.1-cli-bookworm`.\n\n```shell script\ndocker build --pull --tag sapnwrfc:php-8.1 .\n```\n\nCopy `sap.template.json` to `sap.json` and enter your configuration.\n\nCall RFC_PING on SAP remote system to test general functionality:\n\n```shell script\ndocker run --rm -v \"$(pwd)\":/app --workdir /app sapnwrfc:php-8.1 php test.php\n```\n\n## Build other PHP 8.x based images\n\nThe [Dockerfile] allows you to choose the PHP version and the version of the SAPNWRFC module.\n\n* `PHP_VERSION` - the [official PHP docker image tag]. Default: `php:8.1-cli-bookworm`\n* `SAPNWRFC_VERSION` - a [version tag from Gregor Kraliks `sapnwrfc` PHP module]. Default: `2.1.0`\n\n```shell script\ndocker build --pull --build-arg PHP_VERSION=8.1-cli --build-arg SAPNWRFC_VERSION=2.1.0 --tag sapnwrfc:php-8.1 .\n```\n\n## License\n\n[MIT License](LICENSE)\n\nCopyright (c) 2020 PHP/SAP\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n\n## Legal notice\n\nSAP and other SAP products and services mentioned herein are trademarks or\nregistered trademarks of SAP SE (or an SAP affiliate company) in Germany and\nother countries.\n\n[kralik]: https://github.com/gkralik/php7-sapnwrfc \"SAP NW RFC SDK extension for PHP7\"\n[sapnwrfcsdk]: https://gkralik.github.io/php7-sapnwrfc/installation.html#download-the-sap-nw-rfc-library \"Download SAP Netweaver RFC SDK 7.50\"\n[Dockerfile]: Dockerfile\n[official PHP docker image tag]: https://hub.docker.com/_/php/tags\n[version tag from Gregor Kraliks `sapnwrfc` PHP module]: https://github.com/gkralik/php7-sapnwrfc/releases\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphp-sap%2Fdocker-kralik","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fphp-sap%2Fdocker-kralik","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphp-sap%2Fdocker-kralik/lists"}