mirror of
https://github.com/Thumbscrew/matrix-homeserver-docker-compose.git
synced 2025-01-19 01:55:46 +00:00
add synapse admin
This commit is contained in:
parent
b581fa319a
commit
0822c4ced6
@ -11,5 +11,8 @@ UID=991
|
|||||||
GID=991
|
GID=991
|
||||||
TZ=UTC
|
TZ=UTC
|
||||||
|
|
||||||
|
# synapse admin
|
||||||
|
SYNAPSE_ADMIN_PORT=8080
|
||||||
|
|
||||||
# postgres
|
# postgres
|
||||||
POSTGRESQL_IMAGE_TAG=14
|
POSTGRESQL_IMAGE_TAG=14
|
||||||
|
@ -42,3 +42,15 @@ services:
|
|||||||
TZ: ${TZ}
|
TZ: ${TZ}
|
||||||
depends_on:
|
depends_on:
|
||||||
- postgres
|
- postgres
|
||||||
|
|
||||||
|
admin:
|
||||||
|
image: awesometechnologies/synapse-admin:latest
|
||||||
|
restart: unless-stopped
|
||||||
|
networks:
|
||||||
|
- frontend
|
||||||
|
ports:
|
||||||
|
- ${SYNAPSE_ADMIN_PORT}:80
|
||||||
|
environment:
|
||||||
|
REACT_APP_SERVER: ${SERVER_NAME}
|
||||||
|
depends_on:
|
||||||
|
- synapse
|
||||||
|
Loading…
Reference in New Issue
Block a user