From 494585267ad6f8751c9b951846b0904bb8320f95 Mon Sep 17 00:00:00 2001 From: Jonathan de Jong Date: Wed, 7 Jul 2021 20:43:30 +0200 Subject: [PATCH] remove rjbench --- rjbench_testing/docker-compose.yml | 32 ------------------------------ 1 file changed, 32 deletions(-) delete mode 100644 rjbench_testing/docker-compose.yml diff --git a/rjbench_testing/docker-compose.yml b/rjbench_testing/docker-compose.yml deleted file mode 100644 index 44da5b55..00000000 --- a/rjbench_testing/docker-compose.yml +++ /dev/null @@ -1,32 +0,0 @@ -# Conduit -version: '3' - -services: - homeserver: - image: ubuntu:21.04 - restart: unless-stopped - working_dir: "/srv/conduit" - entrypoint: /srv/conduit/conduit - ports: - - 8448:8000 - volumes: - - ../target/db:/srv/conduit/.local/share/conduit - - ../target/debug/conduit:/srv/conduit/conduit - - ./conduit.toml:/srv/conduit/conduit.toml:ro - environment: - # CONDUIT_SERVER_NAME: localhost:8000 # replace with your own name - # CONDUIT_TRUSTED_SERVERS: '["matrix.org"]' - ### Uncomment and change values as desired - # CONDUIT_ADDRESS: 127.0.0.1 - # CONDUIT_PORT: 8000 - CONDUIT_CONFIG: '/srv/conduit/conduit.toml' - # Available levels are: error, warn, info, debug, trace - more info at: https://docs.rs/env_logger/*/env_logger/#enabling-logging - # CONDUIT_LOG: debug # default is: "info,rocket=off,_=off,sled=off" - # CONDUIT_ALLOW_JAEGER: 'false' - # CONDUIT_ALLOW_REGISTRATION : 'false' - # CONDUIT_ALLOW_ENCRYPTION: 'false' - # CONDUIT_ALLOW_FEDERATION: 'false' - # CONDUIT_DATABASE_PATH: /srv/conduit/.local/share/conduit - # CONDUIT_WORKERS: 10 - # CONDUIT_MAX_REQUEST_SIZE: 20_000_000 # in bytes, ~20 MB -