You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
513 B
16 lines
513 B
version: '3'
|
|
|
|
services:
|
|
# Etherpad: real-time collaborative document editing
|
|
etherpad:
|
|
image: etherpad/etherpad:1.8.6
|
|
restart: ${RESTART_POLICY:-unless-stopped}
|
|
environment:
|
|
- TITLE=${ETHERPAD_TITLE}
|
|
- DEFAULT_PAD_TEXT=${ETHERPAD_DEFAULT_PAD_TEXT}
|
|
- SKIN_NAME=${ETHERPAD_SKIN_NAME}
|
|
- SKIN_VARIANTS=${ETHERPAD_SKIN_VARIANTS}
|
|
networks:
|
|
meet.jitsi:
|
|
aliases:
|
|
- etherpad.meet.jitsi
|
|
|