Files
templates/blueprints/etherpad/docker-compose.yml
Jainil Prajapati 🪐 77266b3bd1 ATTENTION IS ALL YOU NEED (#313)
* Add blueprints for wanderer and yamtrack applications with Docker configurations and templates

* Add Vikunja blueprint

* Add Tor Browser blueprint with Docker configuration and template

* Add Picsur image hosting blueprint with Docker configuration and template

* Create new blueprint for deploying Pastefy with MariaDB and OAuth support

* Added Morsphs

* Add KitchenOwl blueprint with Docker Compose configuration and template

* Add Kokoro Web blueprint with Docker Compose configuration and template

* added HortusFox

* added gitingest

* Add Etherpad blueprint with Docker Compose configuration and template

* Add drawnix blueprint with Docker Compose configuration and template

* arranged Meta
2025-08-28 00:22:23 -06:00

40 lines
1.0 KiB
YAML

version: "3.8"
services:
app:
user: "0:0"
image: etherpad/etherpad:latest
tty: true
stdin_open: true
volumes:
- ../files/plugins:/opt/etherpad-lite/src/plugin_packages
- ../files/etherpad_var:/opt/etherpad-lite/var
depends_on:
- postgres
environment:
NODE_ENV: ${NODE_ENV}
ADMIN_PASSWORD: ${ADMIN_PASSWORD}
DB_CHARSET: ${DB_CHARSET}
DB_HOST: ${DB_HOST}
DB_NAME: ${DB_NAME}
DB_PASS: ${DB_PASS}
DB_PORT: ${DB_PORT}
DB_TYPE: ${DB_TYPE}
DB_USER: ${DB_USER}
DEFAULT_PAD_TEXT: ${DEFAULT_PAD_TEXT}
DISABLE_IP_LOGGING: ${DISABLE_IP_LOGGING}
SOFFICE: ${SOFFICE}
TRUST_PROXY: ${TRUST_PROXY}
restart: always
expose:
- 9001
postgres:
image: postgres:15-alpine
environment:
POSTGRES_DB: ${POSTGRES_DB}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
POSTGRES_USER: ${POSTGRES_USER}
PGDATA: /var/lib/postgresql/data/pgdata
restart: always
volumes:
- ../files/postgres_data:/var/lib/postgresql/data/pgdata