mirror of
https://github.com/etkecc/synapse-admin.git
synced 2024-11-21 23:35:22 +03:00
20 lines
564 B
YAML
20 lines
564 B
YAML
services:
|
|
synapse:
|
|
image: ghcr.io/element-hq/synapse:latest
|
|
entrypoint: python
|
|
command: "-m synapse.app.homeserver -c /config/homeserver.yaml"
|
|
ports:
|
|
- "8008:8008"
|
|
volumes:
|
|
- ./testdata/synapse:/config
|
|
- ./testdata/synapse.data:/media-store
|
|
|
|
postgres:
|
|
image: postgres:alpine
|
|
volumes:
|
|
- ./testdata/postgres.data:/var/lib/postgresql/data
|
|
environment:
|
|
POSTGRES_USER: synapse
|
|
POSTGRES_PASSWORD: synapse
|
|
POSTGRES_DB: synapse
|
|
POSTGRES_INITDB_ARGS: "--lc-collate C --lc-ctype C --encoding UTF8"
|