Reference:
Installation:
- Pull the Oracle 23ai Docker Image
Run the below command in terminal."Oracle 23ai" is essentially the same database as "Oracle 23c" but with a name change to emphasize the significant focus on Artificial Intelligence (AI) features included in this release.docker pull container-registry.oracle.com/database/free:23c
- Run the Oracle 23ai Container
docker run -d --name oracle23c-ai \ -p 1521:1521 -p 5500:5500 \ -e ORACLE_PWD=<your-password>> \ container-registry.oracle.com/database/free:23c
ORACLE_PWD
is an environment variable used to set the initial password for the default administrative users (SYS, SYSTEM, and other privileged accounts) - Open a terminal session inside the container
docker exec -it <container-name-or-id> bash
References:
- Download SAP Hana Express
https://www.sap.com/products/technology-platform/hana/express-trial.html - SAP Hana Express
http://www.datadisk.co.uk/html_docs/hana/hana_2.html - Download and Install the SAP HANA Client
https://help.sap.com/docs/hana-cloud/sap-hana-cloud-getting-started-guide/download-and-install-sap-hana-client - SAP HANA 2.0 Express Edition, HANA Studio Full Installation with 1 Year Free Registration
https://www.youtube.com/watch?v=bgKRBDUpFDM&t=126s
Installation:
- Start your tail from https://www.sap.com/products/technology-platform/hana/express-trial.html, then download the HXE Download Manager.
- Install the Linux image into you VMware
- Prerequisites
- Docker: Ensure Docker is installed and running.
- Docker Compose: Make sure you have Docker Compose installed.
- Download and Modify the Official Temporal Docker Compose File
Modify the docker-compose.yml file to adjust the temporal server port and avoid port conflicts:
git clone https://github.com/temporalio/docker-compose.git cd docker-compose
Replacetemporal-ui: container_name: temporal-ui depends_on: - temporal environment: - TEMPORAL_ADDRESS=temporal:7233 - TEMPORAL_CORS_ORIGINS=http://localhost:3000 image: temporalio/ui:${TEMPORAL_UI_VERSION} networks: - temporal-network ports: - <ui-port>:8080
<ui-port>
with your ui port. - Start the Temporal Server
Run the following command to start all required services:docker-compose up
- Access the Temporal Web UI
Once the server is running, access the Temporal Web UI in your browser:http://localhost:<your-ui-port>
- Prerequisites
- Docker: Ensure Docker is installed and running.
- Docker Compose: Make sure you have Docker Compose installed.
- Setup Spark Server using Docker Compose
Create a docker-compose.yml file
Replace
version: '3.8' services: spark-master: image: bitnami/spark:latest container_name: spark-master hostname: spark-master networks: - spark-network ports: - "<ui-port>:8080" - "7077:7077" command: bash -c "/opt/bitnami/scripts/spark/run.sh && /opt/bitnami/spark/bin/spark-class org.apache.spark.deploy.master.Master" spark-worker: image: bitnami/spark:latest depends_on: - spark-master networks: - spark-network environment: - SPARK_MASTER_URL=spark://spark-master:7077 command: bash -c "/opt/bitnami/scripts/spark/run.sh && /opt/bitnami/spark/bin/spark-class org.apache.spark.deploy.worker.Worker spark://spark-master:7077" networks: spark-network: driver: bridge
<ui-port>
with your ui port to avoid port conflicts.
- Visit the project repository https://github.com/AUTOMATIC1111/stable-diffusion-webui
- Choose your GPU
- Download the zip file and refer to the included instructions for installation.