Found 116 results for "docker maintenance upgrades"

The search executed in 0.002108746 seconds. That's fast.

Gitana / 4.0 / Self Managed / Kits / OEM

OEM The OEM kit provides a way for developers, integrators, partners and those who are embedded Cloud CMS in custom solutions to build and test extensions. These extensions include UI extensions as well as API extensions in the form of Java / Spring beans. The kit consists of the following services: ui api mongodb elasticsearch These are connected like this: Running Use the following commands: docker-compose build --force-rm docker-compose up And then open a browser to: http://localhost To acc

Score: 2.5116732

Gitana / 3.2 / Guide / Guide / Docker / Kits / MongoDB Replica Set

MongoDB Replica Set The MongoDB Replica Set kit defines an environment with a 3 node MongoDB replica set and two Cloud CMS environments running against it The configuration files for this kit can be found in the Gitana SDK Running Start the mongo servers first and then initialize the cluster: docker login --username {docker-username} --password '{docker-password}' docker-compose up -d mongodb1 mongodb2 mongodb3 Initialize the replic set. only have to do this once since the mongo servers persist

Score: 2.5023527

More Ways to Run Cloud CMS On-Premise

We just released Cloud CMS version 3.1.315 which includes more sample configurations to help customers and prospects get started with on-premise Docker deployments. Our Docker distribution includes several “kits” that contain pre-built Docker Compose configurations that help customers to get up and running right away. These configurations can either be used as is or they may serve as a reference for building out new configurations that meet a customer’s exact needs. Cloud CMS offers Docker as an

Score: 2.5016944

Publish Smarter Content Faster live APIs, Apps and AI models - Gitana

Publish Smarter Content Faster live APIs, Apps and AI models - Gitana Status Releases Registry Blog Cloud CMS Platform Content Management Create, Approve and Publish quality content to production on-time. Easy editorial and workflow tools let your best work reach your customers. Enterprise Data Engine Manage, collaborate, search and distribute your highly-structured data across branches, versions and workflow-driven lifecycle. Automate Automate your content creation and approval flows while taki

Score: 2.4888592

Publish Smarter Content Faster live APIs, Apps and AI models - Gitana

Publish Smarter Content Faster live APIs, Apps and AI models - Gitana Status Releases Registry Blog Cloud CMS Platform Content Management Create, Approve and Publish quality content to production on-time. Easy editorial and workflow tools let your best work reach your customers. Enterprise Data Engine Manage, collaborate, search and distribute your highly-structured data across branches, versions and workflow-driven lifecycle. Automate Automate your content creation and approval flows while taki

Score: 2.4888592

Gitana / 3.2 / Guide / Guide / Docker / Kits / Quickstart

Quickstart The Quickstart kit defines the following services: ui api mongodb elasticsearch These are connected like this: Running Use the following commands: docker-compose build --force-rm docker-compose up And then open a browser to: http://localhost To access the API directly: https://localhost:8080 docker-compose.yml version: "2" services: ui: build: ./ui networks: - cloudcms depends_on: - api env_file: - ./ui/ui.env ports: - "80:80" api:

Score: 2.4510198

Gitana / 4.0 / Self Managed / Kits / Quickstart

Quickstart The Quickstart kit defines the following services: ui api mongodb elasticsearch These are connected like this: Running Use the following commands: docker-compose build --force-rm docker-compose up And then open a browser to: http://localhost To access the API directly: https://localhost:8080 docker-compose.yml version: "2" services: ui: build: ./ui networks: - cloudcms depends_on: - api env_file: - ./ui/ui.env ports: - "80:80" api:

Score: 2.4510198

How we use Docker at Cloud CMS

At Cloud CMS, we use Docker to provision our cloud infrastructure servers on top of Amazon Web Services. Our stack consists of five different clusters: Cloud CMS API Cloud CMS UI Cloud CMS App Server for Dynamic Hosting Elastic Search MongoDB With the exception of MongoDB, all of these clusters are allocated using elastic load balancing and are architected in such a way that we can spin up new servers and tear down old ones with elastic demand. That is to say, they are fully elastic in design. T

Score: 2.4507148

Gitana / 3.2 / Guide / Guide / Docker / Configuration / Antivirus Server

Antivirus Server The Cloud CMS Antivirus Server is a Node.js application that exposes a HTTP interface to allow an application to remotely scan files by submitting them via HTTP. Submitted files are passed through TCP to a ClamAV daemon process. API GET / If the server is online, this will always return: { "ok": true } POST /status This checks the status of the daemon process and returns whether the Antivirus service is working nominally. If everything is working well, you will get back som

Score: 2.3791978

Gitana / 4.0 / Self Managed / Configuration / Antivirus Server

Antivirus Server The Cloud CMS Antivirus Server is a Node.js application that exposes a HTTP interface to allow an application to remotely scan files by submitting them via HTTP. Submitted files are passed through TCP to a ClamAV daemon process. API GET / If the server is online, this will always return: { "ok": true } POST /status This checks the status of the daemon process and returns whether the Antivirus service is working nominally. If everything is working well, you will get back som

Score: 2.3791978

Gitana / 3.2 / Guide / Guide / Docker / Configuration / Encrypting Properties

Encrypting Properties Cloud CMS lets you encrypt properties within your API configuration files to protect sensitive passwords, secrets and credentials. This encryption utilizes a public and private key. The private key is supplied to the Cloud CMS API server and the public key is provided to developers to encrypt sensitive data. Getting Started To get started, an administrator should generate a set of public/private keys. These are RSA encrypted keys. docker run -v .:/data public.ecr.aws/gitana

Score: 2.3232322

Gitana / 3.2 / Guide / Guide / Docker / Maintenance / Container Hooks

Container Hooks This page describes the configuration of HTTP hooks that can be wired into your container orchestration framework to facilitate container lifecycle events (such as shutdown). Lifecycle Hooks Your container orchestration framework likely supports the ability to signal a running API container when one of the following occurs: A container has finished starting up. A container is about to be shut down. In the Kubernetes world, there are two lifecycle hooks (postStart and preStop). Th

Score: 2.2410026

Gitana / 3.2 / Guide / Guide / Docker / Kits

Kits Cloud CMS ships a number of pre-built kits containing Docker configuration files to help you get start. These kits are built from customer feedback to provide the most commonly requested scenarios. They can be used straight away or at the very least can serve as a useful reference. To download the Cloud CMS Docker Kits, please visit our Docker download page. Kits All of the Docker kits utilize Docker and Docker Compose. In each kit, you'll find a docker-compose.yml file which describes the

Score: 2.2293503

Gitana / 4.0 / Self Managed / Kits / Overview

Kits Cloud CMS ships a number of pre-built kits containing Docker configuration files to help you get start. These kits are built from customer feedback to provide the most commonly requested scenarios. They can be used straight away or at the very least can serve as a useful reference. To download the Cloud CMS Docker Kits, please visit our Docker download page. Kits All of the Docker kits utilize Docker and Docker Compose. In each kit, you'll find a docker-compose.yml file which describes the

Score: 2.2293503

Gitana / 3.2 / Guide / Guide / Docker / Kits / API Cluster

API Cluster The api-cluster kit defines the following services: ui api1 api2 apilb mongodb elasticsearch This kit differs from the quickstart in how it handles API requests. Requests are sent to the apilb container which runs a load balancer, distributing work between api1 and api2. It is worth reviewing the cluster settings for both of your api servers in order for them to correctly communicate. Running Use the following commands: docker-compose build --force-rm docker-compose up And then open

Score: 2.2166014

Container Registry - Gitana

Container Registry - Gitana Status Releases Registry Blog Cloud CMS Platform Content Management Create, Approve and Publish quality content to production on-time. Easy editorial and workflow tools let your best work reach your customers. Enterprise Data Engine Manage, collaborate, search and distribute your highly-structured data across branches, versions and workflow-driven lifecycle. Automate Automate your content creation and approval flows while taking advantage of AI services to enhance and

Score: 2.2061114

Gitana / 3.2 / Guide / Guide / Docker / UI Extensions

UI Extensions The Docker-based Cloud CMS UI provides additional extension patterns beyond the AMD-driven mechanism for user interface components and screens. Since Docker allows you to run on-premise, you can use these extension patterns to influence more foundational changes to the way the application works. Environment Variables When the Cloud CMS user interface starts up, it looks to environment variables to tell it whether there are any extensions available to be loaded. Extensions are store

Score: 2.1412044

Gitana / 4.0 / Self Managed / UI Extensions / Overview

UI Extensions The Docker-based Cloud CMS UI provides additional extension patterns beyond the AMD-driven mechanism for user interface components and screens. Since Docker allows you to run on-premise, you can use these extension patterns to influence more foundational changes to the way the application works. Environment Variables When the Cloud CMS user interface starts up, it looks to environment variables to tell it whether there are any extensions available to be loaded. Extensions are store

Score: 2.1412044

Gitana / 3.2 / Guide / Guide / Application Server / Installation

Installation Docker Installation Module Installation Standalone Installation

Score: 2.1008143

Gitana / 4.0 / Developers / Application Server / Installation

Installation Docker Installation Module Installation Standalone Installation

Score: 2.1008143

Gitana / 3.2 / Guide / Guide / Docker / Upgrades / 3.2.79

3.2.79 Upgrade Notes The notes supplied here pertain to upgrading to Cloud CMS version 3.2.79. Release Notes The release notes for this release are available here: https://gitana.io/release.html?name=3.2.79 Support for ARM-64 With version 3.2.79, we are proud to announce official support for ARM aarch64 architectures. This provides our customers with a choice of chip architectures to deploy on. The demand for ARM has increased as performance testing has shown a 20% better performance while being

Score: 2.0488756

Gitana / 3.2 / Guide / Guide / Docker / Upgrades / 3.2.80

3.2.80 Upgrade Notes The notes supplied here pertain to upgrading to Cloud CMS version 3.2.80. Release Notes The release notes for this release are available here: https://gitana.io/release.html?name=3.2.80 Support for ARM-64 With version 3.2.80, we officially support for ARM aarch64 architectures. This provides our customers with a choice of chip architectures to deploy on. The demand for ARM has increased as performance testing has shown a 20% better performance while being 10% cheaper than x8

Score: 2.0488756

Gitana / 3.2 / Guide / Guide / Docker / Upgrades / 3.2.81

3.2.81 Upgrade Notes The notes supplied here pertain to upgrading to Cloud CMS version 3.2.81. Release Notes The release notes for this release are available here: https://gitana.io/release.html?name=3.2.81 Support for ARM-64 With version 3.2.81, we officially support for ARM aarch64 architectures. This provides our customers with a choice of chip architectures to deploy on. The demand for ARM has increased as performance testing has shown a 20% better performance while being 10% cheaper than x8

Score: 2.0488756

Gitana / 3.2 / Guide / Guide / Docker / Upgrades / 3.2.82

3.2.82 Upgrade Notes The notes supplied here pertain to upgrading to Cloud CMS version 3.2.82. Release Notes The release notes for this release are available here: https://gitana.io/release.html?name=3.2.82 Support for ARM-64 With version 3.2.82, we officially support for ARM aarch64 architectures. This provides our customers with a choice of chip architectures to deploy on. The demand for ARM has increased as performance testing has shown a 20% better performance while being 10% cheaper than x8

Score: 2.0488756

Gitana / 3.2 / Guide / Guide / Docker / Upgrades / 3.2.83

3.2.83 Upgrade Notes The notes supplied here pertain to upgrading to Cloud CMS version 3.2.83. Release Notes The release notes for this release are available here: https://gitana.io/release.html?name=3.2.83 Support for ARM-64 With version 3.2.83, we officially support for ARM aarch64 architectures. This provides our customers with a choice of chip architectures to deploy on. The demand for ARM has increased as performance testing has shown a 20% better performance while being 10% cheaper than x8

Score: 2.0488756