1
0
mirror of https://github.com/tiyn/wiki.git synced 2026-08-25 17:51:37 +02:00
Files
wiki/wiki/docker/awesometechnologies_-_synapse-admin.md

1.1 KiB
Raw Blame History

awesometechnologies synapse-admin

This is a Docker container for a Synapse administration server of Matrix. The official container and documentation was made by awesometechnologies. This docker-rebuild is made up by a docker-compose.yml file.

Setup

Create the files rebuild.sh and docker-compose.yml at the same place. Change the settings according to your needs and run ./rebuild.sh afterward.

Ports

Set the following ports in the ports: section.

Container Port Recommended outside port Protocol Description
80 80 TCP WebUI

rebuild.sh

#!/bin/sh
docker-compose down
docker pull awesometechnologies/synapse-admin:latest
docker-compose up -d

docker-compose.yml

version: "2"
services:
  synapse-admin:
    image: awesometechnologies/synapse-admin:latest
    restart: unless-stopped
    ports:
       80:80