mirror of
https://gitlab.dit.htwk-leipzig.de/fsr-im/k8s/services/overleaf-cep.git
synced 2025-08-30 00:23:51 +02:00
Add initial Helm chart and Docker Compose setup for Overleaf CEP
This commit is contained in:
37
README.md
Normal file
37
README.md
Normal file
@@ -0,0 +1,37 @@
|
||||
# Overleaf CEP - Community Enterprise Edition
|
||||
|
||||
|
||||
## Helm Chart
|
||||
|
||||
This repository contains the Helm chart for deploying Overleaf CEP (Community Enterprise Edition) on a Kubernetes cluster.
|
||||
This chart is designed to be used with the Overleaf CEP Docker images and provides a simple way to deploy the application with all its dependencies.
|
||||
|
||||
### Installation
|
||||
|
||||
```bash
|
||||
helm install overleaf ./overleaf-helm-chart --namespace overleaf --create-namespace
|
||||
```
|
||||
|
||||
### Uninstallation
|
||||
```bash
|
||||
helm uninstall overleaf --namespace overleaf
|
||||
```
|
||||
|
||||
|
||||
## Docker Variant
|
||||
|
||||
To run docker-compose setup go to the `docker-compose` directory and run:
|
||||
|
||||
```bash
|
||||
docker-compose up -d
|
||||
```
|
||||
|
||||
This will start the Overleaf CEP services in detached mode.
|
||||
To stop the services, you can run:
|
||||
|
||||
```bash
|
||||
docker-compose down
|
||||
```
|
||||
|
||||
# Accessing Overleaf CEP
|
||||
Once the services are up, you can access Overleaf CEP by navigating to `http://localhost:80` in your web browser.
|
Reference in New Issue
Block a user