Skip to content
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

Bad Gateway with docker image etherpad:1.8.9 #9

Open
mbauer92 opened this issue Jul 5, 2021 · 4 comments
Open

Bad Gateway with docker image etherpad:1.8.9 #9

mbauer92 opened this issue Jul 5, 2021 · 4 comments

Comments

@mbauer92
Copy link
Contributor

mbauer92 commented Jul 5, 2021

I case this is of interest:
Trying to use the plugin (installed via npm install ep_small_list) with the etherpad docker image (tested with version 1.8.9) results in a 502 http status response on any url.
This is fixed by returning the callback empty (return cb();) at the end of the registerRoute function (

).

@spruce
Copy link
Owner

spruce commented Jan 10, 2022

Sorry for the delay. Could you create a PR fixing that?

@milanbargiel
Copy link

Thanks, I faced the same issue.

@crummy
Copy link

crummy commented Feb 15, 2022

I think I have the same problem. This works for me, after git clone git@github.com:ether/etherpad-lite.git:

version: '2.4'

services:
  etherpad:
    depends_on:
      - etherpad_db
    build:
      context: ./etherpad-lite
    container_name: etherpad
    restart: always
    ports:
      - "9001:9001"
    environment:
      LOGLEVEL: "debug"

Then docker-compose up -d --build.

This does not work for me:

version: '2.4'

services:
  etherpad:
    depends_on:
      - etherpad_db
    build:
      context: ./etherpad-lite
      args:
        ETHERPAD_PLUGINS: "ep_small_list"
    container_name: etherpad
    restart: always
    ports:
      - "9001:9001"
    environment:
      LOGLEVEL: "debug"

The container goes unhealthy after a while and never responds on 9001.

@spruce
Copy link
Owner

spruce commented Mar 28, 2022

Can you check if #10 fixed it?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants