mirror of
https://github.com/etkecc/synapse-admin.git
synced 2024-11-21 15:25:22 +03:00
21 lines
564 B
YAML
21 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"
|