Skip to content

Commit fe5a0df

Browse files
committed
update readme
1 parent aad2a28 commit fe5a0df

File tree

1 file changed

+87
-0
lines changed

1 file changed

+87
-0
lines changed

README.md

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
# pa-radserver-docker
2+
Docker script to build RAD Studio Linux deployment image including RAD Server engine
3+
4+
- Container available on [Docker Hub](https://hub.docker.com/r/radstudio/paserver)
5+
- DocWiki [PAServer Documentation](http://docwiki.embarcadero.com/RADStudio/en/PAServer,_the_Platform_Assistant_Server_Application)
6+
- DocWiki [RAD Server Docker Deployment](https://docwiki.embarcadero.com/RADStudio/en/RAD_Server_Docker_Deployment)
7+
- More information on [RAD Studio](https://www.embarcadero.com/products/rad-studio)
8+
- Other containers: [PAServer](https://github.com/Embarcadero/paserver-docker) and [RAD Server with InterBase](https://github.com/Embarcadero/pa-radserver-ib-docker).
9+
10+
The image defaults to running **PAServer** on port `64211` with the _password_ `securepass`, and **Broadwayd** on port `8082`
11+
12+
The 10.x images use Ubuntu 18.04.6 LTS (Bionic Beaver) while the 11.x images use Ubuntu 22.04.1 LTS (Jammy Jellyfish)
13+
14+
## Instructions
15+
16+
If you want to modify or build from GitHub without using [Docker Hub](https://hub.docker.com/r/radstudio/paserver), you can build the Dockerfile with the `build.sh` script. **Note:** The Dockerfile requires the `paserver_docker.sh` script in the same directory
17+
18+
Usage: `./build.sh [db host] [port]`
19+
```
20+
./build.sh yourhost.com 3050
21+
```
22+
23+
To pull the Docker Hub version of pa-radserver Docker use the `pull.sh` script
24+
```
25+
./pull.sh
26+
```
27+
28+
To pull and run the Docker Hub version of pa-radserver Docker for a non-production environment use the `pull-run.sh` script
29+
30+
Usage: `./pull-run.sh [db host] [port]`
31+
```
32+
./pull-run.sh yourhost.com 3050
33+
```
34+
35+
To pull and run the Docker Hub version of pa-radserver Docker for a production environment use the `pull-run-production.sh` script
36+
37+
Usage: `./pull-run-production.sh [db host] [port]`
38+
```
39+
./pull-run-production.sh yourhost.com 3050
40+
```
41+
42+
To run the Docker Hub version of pa-radserver Docker for a non-production environment use the `run.sh` script
43+
44+
Usage: `./run.sh [db host] [port]`
45+
```
46+
./run.sh yourhost.com 3050
47+
```
48+
49+
To run the Docker Hub version of pa-radserver Docker for a production environment use the `run-production.sh` script
50+
51+
Usage: `./run-production.sh [db host] [port]`
52+
```
53+
./run-production.sh yourhost.com 3050
54+
```
55+
56+
To configure the `emsserver.ini` file of an already running instance of pa-radserver run the `config.sh` script
57+
```
58+
./config.sh
59+
```
60+
The `config.sh` script will restart apache automatically.
61+
62+
The Solutions directory contains possible usage scenarios for using the pa-radserver Docker image.
63+
The 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.
64+
65+
Usage: `./build-run.sh [db host] [port] [module file name]`
66+
```
67+
./pull.sh
68+
./build-run.sh yourhost.com 3050 samplemodule.so
69+
```
70+
71+
The 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.
72+
73+
Usage: `./build-run.sh [db host] [port] [module file name]`
74+
```
75+
./pull.sh
76+
./build-run.sh yourhost.com 3050 samplemodule.so
77+
```
78+
79+
---
80+
81+
This software is Copyright © 2023 by [Embarcadero Technologies, Inc.](https://www.embarcadero.com/)
82+
83+
_You may only use this software if you are an authorized licensee of an Embarcadero developer tools product. This software is considered a Redistributable as defined in the software license agreement that comes with the Embarcadero Products and is governed by the terms of such [software license agreement](https://www.embarcadero.com/products/rad-studio/rad-studio-eula)._
84+
85+
![Embarcadero(Black-100px)](https://user-images.githubusercontent.com/821930/211648635-c0db6930-120c-4456-a7ea-dc7612f01451.png#gh-light-mode-only)
86+
![Embarcadero(White-100px)](https://user-images.githubusercontent.com/821930/211649057-7f1f1f07-a79f-44d4-8fc1-87c819386ec6.png#gh-dark-mode-only)
87+

0 commit comments

Comments
 (0)