-
Notifications
You must be signed in to change notification settings - Fork 426
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
App Submission: Etherpad #2132
App Submission: Etherpad #2132
Changes from 29 commits
8cbd8c6
1679c67
b8cd858
98bbed6
34dce5d
c3c6fdb
8a30866
2c1669f
8855afa
7fb6b12
a467b93
627d78b
57d703f
5c5ebcc
f54af58
5899c20
ad04036
6290052
3977fa6
0c3f58c
4edde17
f2d3c00
fc1b65a
f5f0d76
35ed316
3455a06
7a2b37e
cf30eec
02fd94b
06a47c3
c75906e
e18a23a
321bbe2
07349d3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
Original file line number | Diff line number | Diff line change | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,67 @@ | ||||||||||||
version: '3.7' | ||||||||||||
Check notice on line 1 in etherpad/docker-compose.yml
|
||||||||||||
|
||||||||||||
services: | ||||||||||||
app_proxy: | ||||||||||||
environment: | ||||||||||||
APP_HOST: etherpad_app_1 | ||||||||||||
APP_PORT: 9001 | ||||||||||||
|
||||||||||||
app: | ||||||||||||
image: etherpad/etherpad:2.2.7@sha256:980f227a17569901aaa8f98d8bb6eff51e15c04ad3e2ea0a1692662adbcc2090 | ||||||||||||
tty: true | ||||||||||||
stdin_open: true | ||||||||||||
volumes: | ||||||||||||
- ${APP_DATA_DIR}/data/plugins:/opt/etherpad-lite/src/plugin_packages | ||||||||||||
- ${APP_DATA_DIR}/data/etherpad-var:/opt/etherpad-lite/var:rw | ||||||||||||
depends_on: | ||||||||||||
- postgres | ||||||||||||
environment: | ||||||||||||
NODE_ENV: production | ||||||||||||
ADMIN_PASSWORD: umbrel | ||||||||||||
DB_CHARSET: utf8mb4 | ||||||||||||
DB_HOST: postgres | ||||||||||||
DB_NAME: etherpad | ||||||||||||
DB_PASS: admin | ||||||||||||
DB_PORT: 5432 | ||||||||||||
DB_TYPE: "postgres" | ||||||||||||
DB_USER: admin | ||||||||||||
DEFAULT_PAD_TEXT: | ||||||||||||
# The env var DEFAULT_PAD_TEXT cannot be unset or empty | ||||||||||||
DISABLE_IP_LOGGING: "false" | ||||||||||||
LOGLEVEL: DEBUG | ||||||||||||
SOFFICE: null | ||||||||||||
ALLOW_UNKNOWN_FILE_ENDS: "true" | ||||||||||||
TRUST_PROXY: "true" | ||||||||||||
SKIN_NAME: colibris | ||||||||||||
# Either no-skin, colibris or an existing directory under src/static/skins | ||||||||||||
SKIN_VARIANTS: super-light-toolbar super-light-editor light-background | ||||||||||||
# The Colibris skin allows you to customize the appearance of three containers: toolbar, editor, and background. | ||||||||||||
# You can choose from four color combinations (super-light, light, dark, super-dark) for each container. | ||||||||||||
# For example, using "dark-toolbar" sets the toolbar to dark. | ||||||||||||
# Multiple variants can be applied, and by default, the skin variant is "super-light-toolbar super-light-editor light-background." | ||||||||||||
# You can also make the editor full-width by adding the "full-width-editor" variant. | ||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would remove these comments.
Suggested change
|
||||||||||||
SHOW_SETTINGS_IN_ADMIN_PAGE: "true" | ||||||||||||
SUPPRESS_ERRORS_IN_PAD_TEXT: "false" | ||||||||||||
restart: on-failure | ||||||||||||
user: "1000:1000" | ||||||||||||
|
||||||||||||
postgres: | ||||||||||||
This comment was marked as resolved.
Sorry, something went wrong. |
||||||||||||
image: postgres:15-alpine@sha256:93a6166360be8f1d116b7ea97ebb8dea9e2c9c746349e952738bbba72a961d7c | ||||||||||||
environment: | ||||||||||||
POSTGRES_DB: etherpad | ||||||||||||
POSTGRES_PASSWORD: admin | ||||||||||||
POSTGRES_PORT: 5432 | ||||||||||||
POSTGRES_USER: admin | ||||||||||||
PGDATA: /var/lib/postgresql/data/pgdata | ||||||||||||
restart: on-failure | ||||||||||||
# Exposing the port is not needed unless you want to access this database instance from the host. | ||||||||||||
# Be careful when other postgres docker container are running on the same port | ||||||||||||
# ports: | ||||||||||||
# - "5432:5432" | ||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would remove these comments
Suggested change
|
||||||||||||
volumes: | ||||||||||||
- ${APP_DATA_DIR}/data/postgres_data:/var/lib/postgresql/data/pgdata | ||||||||||||
|
||||||||||||
volumes: | ||||||||||||
postgres_data: | ||||||||||||
plugins: | ||||||||||||
etherpad-var: | ||||||||||||
dennysubke marked this conversation as resolved.
Show resolved
Hide resolved
|
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,36 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
manifestVersion: 1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
id: etherpad | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
name: Etherpad | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
tagline: An intuitive tool for real-time collaborative writing | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
category: files | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
version: "2.2.7" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
port: 9002 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
description: >- | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
📝 Etherpad is an open-source, web-based collaborative real-time editor that enables multiple users to simultaneously edit a document from different locations. It’s particularly valuable for teamwork, group projects, or situations where many people need to contribute to the same document at once. One of Etherpad’s standout features is its live collaboration functionality - as users make changes, those changes appear in real-time for all participants, with each user's contributions color-coded to distinguish them. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
The platform is designed to be simple and intuitive, with a clean and straightforward interface that emphasizes writing and editing. Etherpad doesn’t require users to sign up or install any software, making it easy for anyone to start collaborating quickly. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
Another key feature of Etherpad is its version history system, which allows users to view and revert to previous versions of the document. This ensures that changes can be tracked and recovered if necessary, making it a useful tool for managing long-term collaborative projects. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
As an open-source tool, Etherpad offers flexibility in how it’s used. Users can run it on their own servers for greater control and customization or simply use a public instance hosted by various service providers. The platform is highly extensible, with plugins available for additional features like embedding images, adding task lists, or even integrating with other tools. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
Etherpad has gained popularity in academic, business, and development environments for its simple yet effective collaboration features. Whether you're writing meeting notes, drafting a report, or brainstorming ideas with a team, Etherpad offers a powerful and user-friendly solution for collaborative writing. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Replace apostrophe with single quote
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
developer: The Etherpad Foundation | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
website: https://etherpad.org/ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
submitter: dennysubke | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
submission: https://github.com/getumbrel/umbrel-apps/pull/2132 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
repo: https://github.com/ether/etherpad-lite | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
support: https://github.com/ether/etherpad-lite/issues | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
gallery: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
- 1.jpg | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
- 2.jpg | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
- 3.jpg | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
releaseNotes: "" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
dependencies: [] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
path: "" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
defaultUsername: "" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
defaultPassword: "" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Only worked properly for me when i changed the container name to the full one.