{"id":18824657,"url":"https://github.com/embarcadero/pa-radserver-docker","last_synced_at":"2025-10-24T04:32:02.616Z","repository":{"id":80637696,"uuid":"217745490","full_name":"Embarcadero/pa-radserver-docker","owner":"Embarcadero","description":"Docker script for RAD Studio Linux deployment including RAD Server engine","archived":false,"fork":false,"pushed_at":"2025-04-10T01:06:55.000Z","size":1354,"stargazers_count":11,"open_issues_count":1,"forks_count":5,"subscribers_count":16,"default_branch":"main","last_synced_at":"2025-04-13T17:16:13.523Z","etag":null,"topics":["delphi","docker","docker-image","embarcadero","fmx-linux","rad-server"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/radstudio/pa-radserver","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Embarcadero.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":"2019-10-26T17:33:03.000Z","updated_at":"2025-04-10T01:07:00.000Z","dependencies_parsed_at":"2024-01-15T13:14:17.537Z","dependency_job_id":"ead17b0c-8957-482c-bb8e-b284e502e7d8","html_url":"https://github.com/Embarcadero/pa-radserver-docker","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Embarcadero%2Fpa-radserver-docker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Embarcadero%2Fpa-radserver-docker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Embarcadero%2Fpa-radserver-docker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Embarcadero%2Fpa-radserver-docker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Embarcadero","download_url":"https://codeload.github.com/Embarcadero/pa-radserver-docker/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248807518,"owners_count":21164696,"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":["delphi","docker","docker-image","embarcadero","fmx-linux","rad-server"],"created_at":"2024-11-08T00:57:06.515Z","updated_at":"2025-10-24T04:32:02.543Z","avatar_url":"https://github.com/Embarcadero.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# pa-radserver-docker\n\u003ca href=\"https://www.embarcadero.com/products/rad-server\"\u003e\u003cimg alt=\"Embarcadero RAD Server\" src=\"https://user-images.githubusercontent.com/821930/228645955-70692390-f3e0-4f15-937e-7935725b3684.png\" align=\"right\"\u003e\u003c/a\u003e\nDocker script to build RAD Studio Linux deployment image including RAD Server engine\n\n**Note:** *This image needs a different container running InterBase to function.*\n\n- Container available on [Docker Hub](https://hub.docker.com/r/radstudio/pa-radserver)\n- DocWiki [PAServer Documentation](http://docwiki.embarcadero.com/RADStudio/en/PAServer,_the_Platform_Assistant_Server_Application)\n- DocWiki [RAD Server Docker Deployment](https://docwiki.embarcadero.com/RADStudio/en/RAD_Server_Docker_Deployment)\n- More information on [RAD Studio](https://www.embarcadero.com/products/rad-studio)\n- Other containers: [InterBase](https://github.com/Embarcadero/InterBase-Docker), [PAServer](https://github.com/Embarcadero/paserver-docker) and [RAD Server with InterBase](https://github.com/Embarcadero/pa-radserver-ib-docker).\n\nThe image defaults to running **PAServer** on port `64211` with the _password_ `securepass`\n\nThe 10.x images use Ubuntu 18.04.6 LTS (Bionic Beaver) while the 11.x images use Ubuntu 22.04.1 LTS (Jammy Jellyfish)\n\n## Instructions\n\nIf you want to modify or build from GitHub without using [Docker Hub](https://hub.docker.com/r/radstudio/pa-radserver), you can build the Dockerfile with the `build.sh` script. **Note:** The Dockerfile requires the `paserver_docker.sh` script in the same directory\n\nUsage: `./build.sh [db host] [port]`\n```\n./build.sh yourhost.com 3050\n```\n\nTo pull the [Docker Hub version of pa-radserver](https://hub.docker.com/r/radstudio/pa-radserver) image use the `pull.sh` script\n```\n./pull.sh\n```\nor\n```\ndocker pull radstudio/pa-radserver:latest\n```\nWhere `latest` is the desired tag.\n\nTo pull and run the [Docker Hub version of pa-radserver](https://hub.docker.com/r/radstudio/pa-radserver) image for a debug/non-production environment use the `pull-run.sh` script\n\nUsage: `./pull-run.sh [db host] [port]`\n```\n./pull-run.sh yourhost.com 3050\n```\n\nTo pull and run the [Docker Hub version of pa-radserver](https://hub.docker.com/r/radstudio/pa-radserver) image for a production/non-debug environment use the `pull-run-production.sh` script\n\nUsage: `./pull-run-production.sh [db host] [port]`\n```\n./pull-run-production.sh yourhost.com 3050\n```\n\nTo run the Docker Hub version of pa-radserver Docker for a non-production environment use the `run.sh` script\n\nUsage: `./run.sh [db host] [port]`\n```\n./run.sh yourhost.com 3050\n```\n\nTo run the [Docker Hub version of pa-radserver](https://hub.docker.com/r/radstudio/pa-radserver) image for a production/non-debug environment use the `run-production.sh` script\n\nUsage: `./run-production.sh [db host] [port]`\n```\n./run-production.sh yourhost.com 3050\n```\n\nTo configure the `emsserver.ini` file of an already running instance of pa-radserver run the `config.sh` script\n```\n./config.sh\n```\nThe `config.sh` script will restart apache automatically. \n\nThe Solutions directory contains possible usage scenarios for using the pa-radserver Docker image. \nThe Custom-RAD_Server-Module solution is for the scenario in which the user has a custom module they want to deploy to RAD Server. The custom endpoint resource module needs to be in the same directory as the Dockerfile when the `build-run.sh` script is called.\n\nUsage: `./build-run.sh [db host] [port] [module file name]`\n```\n./pull.sh\n./build-run.sh yourhost.com 3050 samplemodule.so\n```\n\nThe Example-Child-Image solution is for the scenario in which the user wants to add other items to the docker image. The user can add apt packages other custom items through the Dockerfile. \n\nUsage: `./build-run.sh [db host] [port] [module file name]`\n```\n./pull.sh\n./build-run.sh yourhost.com 3050 samplemodule.so\n```\n\n--- \n\nThis software is Copyright \u0026copy; 2024 by [Embarcadero Technologies, Inc.](https://www.embarcadero.com/)\n\n_You may only use this software if you are an authorized licensee of an Embarcadero developer tools product. See the latest [software license agreement](https://www.embarcadero.com/products/rad-studio/rad-studio-eula) for any updates._\n\n![Embarcadero(Black-100px)](https://user-images.githubusercontent.com/821930/211648635-c0db6930-120c-4456-a7ea-dc7612f01451.png#gh-light-mode-only)\n![Embarcadero(White-100px)](https://user-images.githubusercontent.com/821930/211649057-7f1f1f07-a79f-44d4-8fc1-87c819386ec6.png#gh-dark-mode-only)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fembarcadero%2Fpa-radserver-docker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fembarcadero%2Fpa-radserver-docker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fembarcadero%2Fpa-radserver-docker/lists"}