diff options
| author | Joe Carstairs <me@joeac.net> | 2026-06-29 12:01:49 +0100 |
|---|---|---|
| committer | Joe Carstairs <me@joeac.net> | 2026-06-29 12:01:49 +0100 |
| commit | 75ca9d485d3bc98e80396c566278b9db8ba54d4b (patch) | |
| tree | d70ee7af710851eb0ad7554fde278db5584e77a8 /compose.yml | |
| parent | 74dc86d56c823b0c86e323000d168a9cd9988d0f (diff) | |
adds etherpad module
Diffstat (limited to 'compose.yml')
| -rw-r--r-- | compose.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/compose.yml b/compose.yml index 2504e83..f0abeec 100644 --- a/compose.yml +++ b/compose.yml @@ -19,6 +19,24 @@ services: ports: - "8080:80" + etherpad: + image: git.joeac.net/joeac/joeac.net-etherpad + container_name: joeac.net-etherpad + build: + context: . + dockerfile: etherpad.Dockerfile + args: + ALPINE_VERSION: ${ALPINE_VERSION} + ETHERPAD_VERSION: ${ETHERPAD_VERSION} + volumes: + - ./etherpad/var:/var/app/var + environment: + NODE_ENV: ${ETHERPAD_NODE_ENV} + ADMIN_PASSWORD: ${ETHERPAD_ADMIN_PASSWORD} + restart: unless-stopped + ports: + - "${ETHERPAD_PORT}:9001" + smtp: image: git.joeac.net/joeac/joeac.net-smtp container_name: joeac.net-smtp |
