Files
etherpad-lite/docker-compose.yml
zino b3d28be795 m
2025-09-23 10:06:01 +02:00

33 lines
837 B
YAML

services:
etherpad:
user: "0:0"
image: etherpad/etherpad:latest
container_name: etherpad
tty: true
stdin_open: true
restart: unless-stopped
environment:
NODE_ENV: production
TITLE: "Etherpad"
ADMIN_PASSWORD: "2m2R^BkYLhycNA!L"
DB_FILENAME: "/opt/etherpad-lite/var/dirty.db"
LOGLEVEL: "INFO"
DISABLE_IP_LOGGING: "true"
SHOW_SETTINGS_IN_ADMIN_PAGE: "false"
TRUST_PROXY: "true"
REQUIRE_AUTHENTICATION: "false"
REQUIRE_AUTHORIZATION: "false"
REQUIRE_SESSION: "false"
EDIT_ONLY: "false"
SESSION_NO_PASSWORD: "false"
volumes:
- ./volumes/etherpad-var:/opt/etherpad-lite/var
- ./volumes/etherpad-plugins:/opt/etherpad-lite/src/plugin_packages
networks:
- web
networks:
web:
external: true
name: web