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

Add docker compose examples #38

Open
tvelocity opened this issue May 1, 2018 · 2 comments
Open

Add docker compose examples #38

tvelocity opened this issue May 1, 2018 · 2 comments

Comments

@tvelocity
Copy link
Owner

This is a popular request, e.g. in #36 where an implementation was proposed

@fspc
Copy link

fspc commented May 5, 2018

There is etherpad-and-draw-node-alpine at https://github.com/fspc/etherpad-and-draw-node-alpine. The etherpad Dockerfile and entrypoint.sh is a fork of your project altered to work with alpine linux and rehashed to work with etherdraw.

@lupa18
Copy link

lupa18 commented Aug 24, 2018

Hello, here a docker-compose.yml example:

version: '3'

services:
  db:
    image: mariadb:latest
    restart: on-failure:5
    # to pass mariadb passords
    env_file: mariadb.env
    volumes:
      - db:/var/lib/mysql
  app:
    image: tvelocity/etherpad-lite
    restart: unless-stopped
    # to pass env variables
    env_file: etherpad.env
    ports:
      - "8080:9000"
    depends_on:
      - db

volumes:
  db:

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

No branches or pull requests

3 participants