npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

generator-alfresco-enterprise-docker

v0.0.8

Published

Docker Compose template generator for Alfresco Enterprise

Downloads

4

Readme

generator-alfresco-enterprise-docker

Alfresco Enterprise Docker Installer

DISCLAIMER

IMPORTANT This project is not supported by Alfresco in any way. Despite deployments using Docker Compose are considered a valid approach for ACS deployment (Community and Enterprise), this alfresco-enterprise-docker tool is not the official Alfresco recommendation. Please, check https://github.com/Alfresco/acs-deployment/tree/master/docker-compose in order to understand official recommendations from Alfresco.

Description

This project builds a Docker Compose template for Alfresco Enterprise according to services selection that can be used as reference to design ACS deployments.

This project does not include:

  • RAM limits for every service according to global memory available for Docker
  • Customized configuration for Docker Images
  • Addons deployment

Docker Images from quay.io are used, since this product is only available for Alfresco Enterprise customers. If you are Enterprise Customer or Partner but you are still experimenting problems to download Docker Images, contact Alfresco Hyland Support in order to get required credentials and permissions.

Installation

This program has following dependencies:

  • Node.js
  • Yeoman

You can download and install Node.js from official web page:

https://nodejs.org/en/download/

Or you can use any of the package managers provided by the product:

https://nodejs.org/en/download/package-manager/

Once Node.js is installed, you can install Yeoman as a module:

$ npm install -g yo

And finally, you can install this generator:

$ npm install --global generator-alfresco-enterprise-docker

Deployment is provided for Docker Compose, so following dependencies must be satisfied by the server used to run the generated configuration:

  • Docker
  • Docker Compose

You can install Docker Desktop for Windows or Mac and Docker Server for Linux.

https://docs.docker.com/install/

You need also to add Docker Compose program to your installation.

https://docs.docker.com/compose/install/

Running

Create a folder where Docker Compose template files are going to be produced and run the generator.

If you downloaded this project, don't reuse source code folder. Create an empty folder to generate Docker Compose template anywhere.

$ mkdir docker-compose
$ cd docker-compose

$ yo alfresco-enterprise-docker

Several options are provided in order to build the configuration.

? Which ACS version do you want to use? 23.2

Versions 7.1, 7.2, 7.3, 7.4, 23.1 and 23.2 are available

? Do you want to use T-Engine (sync) or T-Service (async) as transform service? t-engine
  • t-engine is the Transform Service used for Community Edition, relying on synchronous requests (no ActiveMQ is required)
  • t-service is a Transform Service available for Enterprise Edition, relying on asynchronous requests (ActiveMQ is required)
? Do you want to use Search Service (SOLR 6), Insight Engine (SOLR 6 with SQL) or Search Enterprise (Elasticsearch) as search service? search-service
  • search-service is the Search Service used for Community Edition, relying on SOLR 6.6
  • insight-engine is a Search Service available for Enterprise Edition, relying on SOLR 6.6 and including support for SQL
  • search-enterprise-elasticsearch is a Search Service available for Enterprise Edition, relying on Elasticsearch (ActiveMQ is required)
  • search-enterprise-opensearch is a Search Service available for Enterprise Edition, relying on OpenSearch (ActiveMQ is required)
? Do you want to use Apache Zeppelin for Insight Engine? n

If insight-engine is selected, Apache Zeppelin deployment will provide a UI to build graphical dashboards using Solr SQL feature

? Do you want to use Share Web App? Y

Deploy the legacy Share UI (built with FreeMarker, Springsurf and Aikau)

? Do you want to use Alfresco Digital Workspace App? Y

Deploy the current ADW UI (built with Angular)

? Do you want to use Alfresco Admin App? Y

Deploy the Control Center app for Alfresco Authorities (built with Angular)

? Do you want to use Sync Service? N

Deploy Sync Service to support Desktop Sync application

Docker Images

Service URLs

Default URLs

http://localhost:8080/workspace (ADW)

Default credentials

  • user: admin
  • password: admin

http://localhost:8080/admin (Control Center)

Default credentials

  • user: admin
  • password: admin

http://localhost:8080/share (Share)

Default credentials

  • user: admin
  • password: admin

http://localhost:8080/alfresco (Alfresco)

Default credentials

  • user: admin
  • password: admin

http://localhost:8080/api-explorer (API Explorer)

Default credentials

  • user: admin
  • password: admin

http://localhost:8083/solr (Search Service)

Default credentials

  • user: admin
  • password: admin

http://localhost:8161 (ActiveMQ)

Default credentials: none

http://localhost:9091/zeppelin (Zeppelin)

Default credentials

  • user: admin
  • password: admin

http://localhost:9200 (Elasticsearch / OpenSearch)

Default credentials: none

http://localhost:5601 (Kibana / OpenSearch Dashboards)

Default credentials: none

Building

It's not required to build or download this project in order to use it. But this can be done using default npm tools.

The module is available at npm:

https://www.npmjs.com/package/generator-alfresco-enterprise-docker

If you want to build it locally, you need an environment with Node.js and Yeoman. And from the root folder of the project, just type:

$ npm link