# https://hub.docker.com/r/awesometechnologies/synapse-admin version: '3.7' networks: # You need to create this network manually first! synapse: external: true services: synapse-admin: image: awesometechnologies/synapse-admin container_name: synapse-admin hostname: synapse-admin networks: - default - synapse ports: - "${WEBUI_BIND_ADDR:-127.0.0.1}:${WEBUI_BIND_PORT:-8009}:80" env_file: .env restart: unless-stopped logging: driver: "json-file" options: max-size: "${LOG_MAX_SIZE:-5m}" max-file: "${LOG_MAX_FILE:-5}"