3
3
Sample container configurations facilitate
4
4
installation, configuration, and environment setup for DevOps users.
5
5
This project includes quick start
6
- [ container] ( dockerfiles/ ) for Oracle Analytics Server 2022 (6.4) based on Oracle Linux 7 and Oracle Analytics Server 2025 (8.2)
7
- based on Oracle Linux 8, using Oracle JRE 8 (Server),
6
+ [ container] ( dockerfiles/ ) for Oracle Analytics Server 2025 (8.2)
7
+ based on Oracle Linux 8, Oracle JRE 8 (Server),
8
8
and Oracle Fusion Middleware Infrastructure 12.2.1.4.0.
9
9
10
10
For more information about Oracle Analytics Server,
@@ -41,8 +41,8 @@ Before you can build a BI image, you will need to build the [Oracle Java](https:
41
41
### Building the Oracle Analytics Server Image
42
42
43
43
Download the binaries for
44
- [ Oracle Analytics Server 2022 (6.4 )] ( https://www-sites.oracle.com/solutions/business-analytics/analytics-server/analytics-server.html )
45
- for Linux x86-64-bit into the folder ` OracleAnalytics/dockerfiles/6.4 ` .
44
+ [ Oracle Analytics Server 2025 (8.2 )] ( https://www-sites.oracle.com/solutions/business-analytics/analytics-server/analytics-server.html )
45
+ for Linux x86-64-bit into the folder ` OracleAnalytics/dockerfiles/2025 ` .
46
46
47
47
If you need a proxy for the host to access yum.oracle.com during build,
48
48
first set up the appropriate environment. For example:
@@ -57,22 +57,22 @@ Build the image:
57
57
58
58
``` bash
59
59
cd OracleAnalytics/dockerfiles
60
- ./buildContainerImage.sh -v 6.4
60
+ ./buildContainerImage.sh -v 2025
61
61
```
62
62
63
63
Sample command(s) for users who don't want to use the above script to build the image:
64
64
65
65
``` bash
66
66
# without proxy
67
- docker build --force-rm=true --no-cache=true -t oracle/analyticsserver:6.4 -f Dockerfile .
67
+ docker build --force-rm=true --no-cache=true -t oracle/analyticsserver:2025 -f Dockerfile .
68
68
69
69
# with proxy
70
- docker build --force-rm=true --no-cache=true --build-arg http_proxy=http://myproxy.example.com:80 --build-arg https_proxy=https://myproxy.example.com:80 -t oracle/analyticsserver:6.4 -f Dockerfile .
70
+ docker build --force-rm=true --no-cache=true --build-arg http_proxy=http://myproxy.example.com:80 --build-arg https_proxy=https://myproxy.example.com:80 -t oracle/analyticsserver:2025 -f Dockerfile .
71
71
```
72
72
73
73
### Building the Oracle Analytics Server Patched Image
74
74
75
- See the [ Oracle Analytics patched image documentation] ( ./patches/6.4 -patch ) for details.
75
+ See the [ Oracle Analytics patched image documentation] ( ./patches/2025 -patch ) for details.
76
76
77
77
## Creating an Oracle Analytics Server Container
78
78
@@ -108,7 +108,7 @@ The following variables are predefined:
108
108
For example:
109
109
110
110
``` bash
111
- docker run -d --name bi -p 9500:9500 -p 9502:9502 -e ADMIN_USERNAME=weblogic -e ADMIN_PASSWORD=< admin_password> -e DB_HOST=database -e DB_PORT=1521 -e DB_SERVICE=ORCLPDB1 -e DB_USERNAME=sys -e DB_PASSWORD=< db_password> -e SCHEMA_PREFIX=DEV -e SCHEMA_PASSWORD=< schema_password> oracle/analyticsserver:6.4 -patch
111
+ docker run -d --name bi -p 9500:9500 -p 9502:9502 -e ADMIN_USERNAME=weblogic -e ADMIN_PASSWORD=< admin_password> -e DB_HOST=database -e DB_PORT=1521 -e DB_SERVICE=ORCLPDB1 -e DB_USERNAME=sys -e DB_PASSWORD=< db_password> -e SCHEMA_PREFIX=DEV -e SCHEMA_PASSWORD=< schema_password> oracle/analyticsserver:2025 -patch
112
112
```
113
113
114
114
Change _ <...password>_ to your required values, and DB values to match your database.
@@ -137,12 +137,6 @@ you must modify the previous `docker run` command to expose port 9514.
137
137
138
138
For example:
139
139
140
- 6.4:
141
- ``` bash
142
- docker run -it -p 9500:9500 -p 9502:9502 -p 9514:9514 -e ADMIN_USERNAME=weblogic -e ADMIN_PASSWORD=< admin_password> -e DB_HOST=database -e DB_PORT=1521 -e DB_SERVICE=ORCLPDB1 -e DB_USERNAME=sys -e DB_PASSWORD=< db_password> -e SCHEMA_PREFIX=DEV -e SCHEMA_PASSWORD=< schema_password> oracle/analyticsserver:6.4-patch
143
- ```
144
-
145
- 2025:
146
140
``` bash
147
141
docker run -it -p 9500:9500 -p 9502:9502 -p 9514:9514 -e ADMIN_USERNAME=weblogic -e ADMIN_PASSWORD=< admin_password> -e DB_HOST=database -e DB_PORT=1521 -e DB_SERVICE=ORCLPDB1 -e DB_USERNAME=sys -e DB_PASSWORD=< db_password> -e SCHEMA_PREFIX=DEV -e SCHEMA_PASSWORD=< schema_password> -e BI_APP_LITE_PASSWORD=< bi_app_lite_password> oracle/analyticsserver:2025-patch
148
142
```
@@ -183,7 +177,7 @@ For example,
183
177
184
178
3 . Start a BI container that uses the database by name:
185
179
186
- $ docker run --name bi --network=bi_net -e DB_HOST=database ...... oracle/analyticsserver:6.4 -patch
180
+ $ docker run --name bi --network=bi_net -e DB_HOST=database ...... oracle/analyticsserver:2025 -patch
187
181
188
182
Note: In the above container run examples, other parameters are omitted for clarity.
189
183
0 commit comments