Newer
Older
name: etherpad-db-pg
weekpad-db:
name: weekpad-db
deleted-pads-standard:
name: deleted-pads-standard
deleted-pads-week:
name: deleted-pads-week
standard:
name: etherpad_main
week:
name: etherpad_week
proxy:
image: registry.picasoft.net/pica-etherpad:1.8.6
container_name: etherpad-app
env_file: ./secrets/etherpad-app.secrets
volumes:
- ./settings.json:/opt/etherpad-lite/settings.json
- deleted-pads-standard:/opt/etherpad-lite/deleted_pads
traefik.http.routers.etherpad-app.entrypoints: websecure
traefik.http.routers.etherpad-app.rule: Host(`pad.picasoft.net`)
traefik.http.services.etherpad-app.loadbalancer.server.port: 8080
DB_HOST: "etherpad-db"
LOGLEVEL: "INFO"
THEME: "colibris"
TITLE: "Picapad"
TRUST_PROXY: "true"
Romain De Laage De Bellefaye
committed
ABIWORD: "/usr/bin/abiword"
- proxy
- standard
depends_on:
- etherpad-db
restart: unless-stopped
image: postgres:12
container_name: etherpad-db
volumes:
- etherpad-db:/var/lib/postgresql/data
env_file: ./secrets/etherpad-db.secrets
networks:
- standard
restart: unless-stopped
image: registry.picasoft.net/pica-etherpad:1.8.6
container_name: etherpad-week-app
build: .
env_file: ./secrets/etherpad-week-app.secrets
volumes:
- ./settings_week.json:/opt/etherpad-lite/settings.json
- deleted-pads-week:/opt/etherpad-lite/deleted_pads
traefik.http.routers.etherpad-week-app.entrypoints: websecure
traefik.http.routers.etherpad-week-app.rule: Host(`week.pad.picasoft.net`)
traefik.http.services.etherpad-week-app.loadbalancer.server.port: 8080
environment:
DB_HOST: "etherpad-week-db"
LOGLEVEL: "INFO"
MINIFY: "true"
PORT: 8080
THEME: "colibris"
TITLE: "Picapad Hebdo"
TRUST_PROXY: "true"
Romain De Laage De Bellefaye
committed
ABIWORD: "/usr/bin/abiword"
depends_on:
- etherpad-week-db
- proxy
- week
restart: unless-stopped
image: postgres:12
container_name: etherpad-week-db
volumes:
- weekpad-db:/var/lib/postgresql/data
env_file: ./secrets/etherpad-week-db.secrets
restart: unless-stopped
networks: