docker-ovh/etherpad/docker-compose.yml

16 lines
339 B
YAML
Raw Normal View History

2019-11-01 11:32:07 +01:00
version: "3"
2019-07-25 19:56:11 +02:00
services:
etherpad:
2019-11-01 11:32:07 +01:00
image: etherpad/etherpad
environment:
- NODE_ENV=production
- POSTGRES_USER=etherpad
- "POSTGRES_PASSWORD=${POSTGRES_PASSWD}"
- POSTGRES_DB=etherpad
2019-07-25 19:56:11 +02:00
ports:
- 8084:9001
2019-11-01 11:32:07 +01:00
volumes:
- ./settings.json:/opt/etherpad-lite/settings.json:ro
restart: always