diff --git a/.gitignore b/.gitignore index 2ba363a..c6a3bf5 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ *.crt *.cer *.key +.vscode docker-compose-files/test/* docker-compose-files/testing/* test/* diff --git a/pre/docker/.env.example b/pre/docker/.env.example deleted file mode 100644 index b21bdc7..0000000 --- a/pre/docker/.env.example +++ /dev/null @@ -1,934 +0,0 @@ -# ------------------------------ -# Environment Variables for API service & worker -# ------------------------------ - -# ------------------------------ -# Common Variables -# ------------------------------ - -# The backend URL of the console API, -# used to concatenate the authorization callback. -# If empty, it is the same domain. -# Example: https://api.console.dify.ai -CONSOLE_API_URL= - -# The front-end URL of the console web, -# used to concatenate some front-end addresses and for CORS configuration use. -# If empty, it is the same domain. -# Example: https://console.dify.ai -CONSOLE_WEB_URL= - -# Service API Url, -# used to display Service API Base Url to the front-end. -# If empty, it is the same domain. -# Example: https://api.dify.ai -SERVICE_API_URL= - -# WebApp API backend Url, -# used to declare the back-end URL for the front-end API. -# If empty, it is the same domain. -# Example: https://api.app.dify.ai -APP_API_URL= - -# WebApp Url, -# used to display WebAPP API Base Url to the front-end. -# If empty, it is the same domain. -# Example: https://app.dify.ai -APP_WEB_URL= - -# File preview or download Url prefix. -# used to display File preview or download Url to the front-end or as Multi-model inputs; -# Url is signed and has expiration time. -FILES_URL= - -# ------------------------------ -# Server Configuration -# ------------------------------ - -# The log level for the application. -# Supported values are `DEBUG`, `INFO`, `WARNING`, `ERROR`, `CRITICAL` -LOG_LEVEL=INFO -# Log file path -LOG_FILE=/app/logs/server.log -# Log file max size, the unit is MB -LOG_FILE_MAX_SIZE=20 -# Log file max backup count -LOG_FILE_BACKUP_COUNT=5 -# Log dateformat -LOG_DATEFORMAT=%Y-%m-%d %H:%M:%S -# Log Timezone -LOG_TZ=UTC - -# Debug mode, default is false. -# It is recommended to turn on this configuration for local development -# to prevent some problems caused by monkey patch. -DEBUG=false - -# Flask debug mode, it can output trace information at the interface when turned on, -# which is convenient for debugging. -FLASK_DEBUG=false - -# A secretkey that is used for securely signing the session cookie -# and encrypting sensitive information on the database. -# You can generate a strong key using `openssl rand -base64 42`. -SECRET_KEY=sk-9f73s3ljTXVcMT3Blb3ljTqtsKiGHXVcMT3BlbkFJLK7U - -# Password for admin user initialization. -# If left unset, admin user will not be prompted for a password -# when creating the initial admin account. -# The length of the password cannot exceed 30 charactors. -INIT_PASSWORD= - -# Deployment environment. -# Supported values are `PRODUCTION`, `TESTING`. Default is `PRODUCTION`. -# Testing environment. There will be a distinct color label on the front-end page, -# indicating that this environment is a testing environment. -DEPLOY_ENV=PRODUCTION - -# Whether to enable the version check policy. -# If set to empty, https://updates.dify.ai will be called for version check. -CHECK_UPDATE_URL=https://updates.dify.ai - -# Used to change the OpenAI base address, default is https://api.openai.com/v1. -# When OpenAI cannot be accessed in China, replace it with a domestic mirror address, -# or when a local model provides OpenAI compatible API, it can be replaced. -OPENAI_API_BASE=https://api.openai.com/v1 - -# When enabled, migrations will be executed prior to application startup -# and the application will start after the migrations have completed. -MIGRATION_ENABLED=true - -# File Access Time specifies a time interval in seconds for the file to be accessed. -# The default value is 300 seconds. -FILES_ACCESS_TIMEOUT=300 - -# Access token expiration time in minutes -ACCESS_TOKEN_EXPIRE_MINUTES=60 - -# Refresh token expiration time in days -REFRESH_TOKEN_EXPIRE_DAYS=30 - -# The maximum number of active requests for the application, where 0 means unlimited, should be a non-negative integer. -APP_MAX_ACTIVE_REQUESTS=0 -APP_MAX_EXECUTION_TIME=1200 - -# ------------------------------ -# Container Startup Related Configuration -# Only effective when starting with docker image or docker-compose. -# ------------------------------ - -# API service binding address, default: 0.0.0.0, i.e., all addresses can be accessed. -DIFY_BIND_ADDRESS=0.0.0.0 - -# API service binding port number, default 5001. -DIFY_PORT=5001 - -# The number of API server workers, i.e., the number of workers. -# Formula: number of cpu cores x 2 + 1 for sync, 1 for Gevent -# Reference: https://docs.gunicorn.org/en/stable/design.html#how-many-workers -SERVER_WORKER_AMOUNT=1 - -# Defaults to gevent. If using windows, it can be switched to sync or solo. -SERVER_WORKER_CLASS=gevent - -# Default number of worker connections, the default is 10. -SERVER_WORKER_CONNECTIONS=10 - -# Similar to SERVER_WORKER_CLASS. -# If using windows, it can be switched to sync or solo. -CELERY_WORKER_CLASS= - -# Request handling timeout. The default is 200, -# it is recommended to set it to 360 to support a longer sse connection time. -GUNICORN_TIMEOUT=360 - -# The number of Celery workers. The default is 1, and can be set as needed. -CELERY_WORKER_AMOUNT= - -# Flag indicating whether to enable autoscaling of Celery workers. -# -# Autoscaling is useful when tasks are CPU intensive and can be dynamically -# allocated and deallocated based on the workload. -# -# When autoscaling is enabled, the maximum and minimum number of workers can -# be specified. The autoscaling algorithm will dynamically adjust the number -# of workers within the specified range. -# -# Default is false (i.e., autoscaling is disabled). -# -# Example: -# CELERY_AUTO_SCALE=true -CELERY_AUTO_SCALE=false - -# The maximum number of Celery workers that can be autoscaled. -# This is optional and only used when autoscaling is enabled. -# Default is not set. -CELERY_MAX_WORKERS= - -# The minimum number of Celery workers that can be autoscaled. -# This is optional and only used when autoscaling is enabled. -# Default is not set. -CELERY_MIN_WORKERS= - -# API Tool configuration -API_TOOL_DEFAULT_CONNECT_TIMEOUT=10 -API_TOOL_DEFAULT_READ_TIMEOUT=60 - - -# ------------------------------ -# Database Configuration -# The database uses PostgreSQL. Please use the public schema. -# It is consistent with the configuration in the 'db' service below. -# ------------------------------ - -DB_USERNAME=postgres -DB_PASSWORD=difyai123456 -DB_HOST=db -DB_PORT=5432 -DB_DATABASE=dify -# The size of the database connection pool. -# The default is 30 connections, which can be appropriately increased. -SQLALCHEMY_POOL_SIZE=30 -# Database connection pool recycling time, the default is 3600 seconds. -SQLALCHEMY_POOL_RECYCLE=3600 -# Whether to print SQL, default is false. -SQLALCHEMY_ECHO=false - -# Maximum number of connections to the database -# Default is 100 -# -# Reference: https://www.postgresql.org/docs/current/runtime-config-connection.html#GUC-MAX-CONNECTIONS -POSTGRES_MAX_CONNECTIONS=100 - -# Sets the amount of shared memory used for postgres's shared buffers. -# Default is 128MB -# Recommended value: 25% of available memory -# Reference: https://www.postgresql.org/docs/current/runtime-config-resource.html#GUC-SHARED-BUFFERS -POSTGRES_SHARED_BUFFERS=128MB - -# Sets the amount of memory used by each database worker for working space. -# Default is 4MB -# -# Reference: https://www.postgresql.org/docs/current/runtime-config-resource.html#GUC-WORK-MEM -POSTGRES_WORK_MEM=4MB - -# Sets the amount of memory reserved for maintenance activities. -# Default is 64MB -# -# Reference: https://www.postgresql.org/docs/current/runtime-config-resource.html#GUC-MAINTENANCE-WORK-MEM -POSTGRES_MAINTENANCE_WORK_MEM=64MB - -# Sets the planner's assumption about the effective cache size. -# Default is 4096MB -# -# Reference: https://www.postgresql.org/docs/current/runtime-config-query.html#GUC-EFFECTIVE-CACHE-SIZE -POSTGRES_EFFECTIVE_CACHE_SIZE=4096MB - -# ------------------------------ -# Redis Configuration -# This Redis configuration is used for caching and for pub/sub during conversation. -# ------------------------------ - -REDIS_HOST=redis -REDIS_PORT=6379 -REDIS_USERNAME= -REDIS_PASSWORD=difyai123456 -REDIS_USE_SSL=false -REDIS_DB=0 - -# Whether to use Redis Sentinel mode. -# If set to true, the application will automatically discover and connect to the master node through Sentinel. -REDIS_USE_SENTINEL=false - -# List of Redis Sentinel nodes. If Sentinel mode is enabled, provide at least one Sentinel IP and port. -# Format: `:,:,:` -REDIS_SENTINELS= -REDIS_SENTINEL_SERVICE_NAME= -REDIS_SENTINEL_USERNAME= -REDIS_SENTINEL_PASSWORD= -REDIS_SENTINEL_SOCKET_TIMEOUT=0.1 - -# List of Redis Cluster nodes. If Cluster mode is enabled, provide at least one Cluster IP and port. -# Format: `:,:,:` -REDIS_USE_CLUSTERS=false -REDIS_CLUSTERS= -REDIS_CLUSTERS_PASSWORD= - -# ------------------------------ -# Celery Configuration -# ------------------------------ - -# Use redis as the broker, and redis db 1 for celery broker. -# Format as follows: `redis://:@:/` -# Example: redis://:difyai123456@redis:6379/1 -# If use Redis Sentinel, format as follows: `sentinel://:@:/` -# Example: sentinel://localhost:26379/1;sentinel://localhost:26380/1;sentinel://localhost:26381/1 -CELERY_BROKER_URL=redis://:difyai123456@redis:6379/1 -BROKER_USE_SSL=false - -# If you are using Redis Sentinel for high availability, configure the following settings. -CELERY_USE_SENTINEL=false -CELERY_SENTINEL_MASTER_NAME= -CELERY_SENTINEL_SOCKET_TIMEOUT=0.1 - -# ------------------------------ -# CORS Configuration -# Used to set the front-end cross-domain access policy. -# ------------------------------ - -# Specifies the allowed origins for cross-origin requests to the Web API, -# e.g. https://dify.app or * for all origins. -WEB_API_CORS_ALLOW_ORIGINS=* - -# Specifies the allowed origins for cross-origin requests to the console API, -# e.g. https://cloud.dify.ai or * for all origins. -CONSOLE_CORS_ALLOW_ORIGINS=* - -# ------------------------------ -# File Storage Configuration -# ------------------------------ - -# The type of storage to use for storing user files. -STORAGE_TYPE=opendal - -# Apache OpenDAL Configuration -# The configuration for OpenDAL consists of the following format: OPENDAL__. -# You can find all the service configurations (CONFIG_NAME) in the repository at: https://github.com/apache/opendal/tree/main/core/src/services. -# Dify will scan configurations starting with OPENDAL_ and automatically apply them. -# The scheme name for the OpenDAL storage. -OPENDAL_SCHEME=fs -# Configurations for OpenDAL Local File System. -OPENDAL_FS_ROOT=storage - -# S3 Configuration -# -S3_ENDPOINT= -S3_REGION=us-east-1 -S3_BUCKET_NAME=difyai -S3_ACCESS_KEY= -S3_SECRET_KEY= -# Whether to use AWS managed IAM roles for authenticating with the S3 service. -# If set to false, the access key and secret key must be provided. -S3_USE_AWS_MANAGED_IAM=false - -# Azure Blob Configuration -# -AZURE_BLOB_ACCOUNT_NAME=difyai -AZURE_BLOB_ACCOUNT_KEY=difyai -AZURE_BLOB_CONTAINER_NAME=difyai-container -AZURE_BLOB_ACCOUNT_URL=https://.blob.core.windows.net - -# Google Storage Configuration -# -GOOGLE_STORAGE_BUCKET_NAME=your-bucket-name -GOOGLE_STORAGE_SERVICE_ACCOUNT_JSON_BASE64= - -# The Alibaba Cloud OSS configurations, -# -ALIYUN_OSS_BUCKET_NAME=your-bucket-name -ALIYUN_OSS_ACCESS_KEY=your-access-key -ALIYUN_OSS_SECRET_KEY=your-secret-key -ALIYUN_OSS_ENDPOINT=https://oss-ap-southeast-1-internal.aliyuncs.com -ALIYUN_OSS_REGION=ap-southeast-1 -ALIYUN_OSS_AUTH_VERSION=v4 -# Don't start with '/'. OSS doesn't support leading slash in object names. -ALIYUN_OSS_PATH=your-path - -# Tencent COS Configuration -# -TENCENT_COS_BUCKET_NAME=your-bucket-name -TENCENT_COS_SECRET_KEY=your-secret-key -TENCENT_COS_SECRET_ID=your-secret-id -TENCENT_COS_REGION=your-region -TENCENT_COS_SCHEME=your-scheme - -# Oracle Storage Configuration -# -OCI_ENDPOINT=https://objectstorage.us-ashburn-1.oraclecloud.com -OCI_BUCKET_NAME=your-bucket-name -OCI_ACCESS_KEY=your-access-key -OCI_SECRET_KEY=your-secret-key -OCI_REGION=us-ashburn-1 - -# Huawei OBS Configuration -# -HUAWEI_OBS_BUCKET_NAME=your-bucket-name -HUAWEI_OBS_SECRET_KEY=your-secret-key -HUAWEI_OBS_ACCESS_KEY=your-access-key -HUAWEI_OBS_SERVER=your-server-url - -# Volcengine TOS Configuration -# -VOLCENGINE_TOS_BUCKET_NAME=your-bucket-name -VOLCENGINE_TOS_SECRET_KEY=your-secret-key -VOLCENGINE_TOS_ACCESS_KEY=your-access-key -VOLCENGINE_TOS_ENDPOINT=your-server-url -VOLCENGINE_TOS_REGION=your-region - -# Baidu OBS Storage Configuration -# -BAIDU_OBS_BUCKET_NAME=your-bucket-name -BAIDU_OBS_SECRET_KEY=your-secret-key -BAIDU_OBS_ACCESS_KEY=your-access-key -BAIDU_OBS_ENDPOINT=your-server-url - -# Supabase Storage Configuration -# -SUPABASE_BUCKET_NAME=your-bucket-name -SUPABASE_API_KEY=your-access-key -SUPABASE_URL=your-server-url - -# ------------------------------ -# Vector Database Configuration -# ------------------------------ - -# The type of vector store to use. -# Supported values are `weaviate`, `qdrant`, `milvus`, `myscale`, `relyt`, `pgvector`, `pgvecto-rs`, `chroma`, `opensearch`, `tidb_vector`, `oracle`, `tencent`, `elasticsearch`, `elasticsearch-ja`, `analyticdb`, `couchbase`, `vikingdb`, `oceanbase`. -VECTOR_STORE=weaviate - -# The Weaviate endpoint URL. Only available when VECTOR_STORE is `weaviate`. -WEAVIATE_ENDPOINT=http://weaviate:8080 -WEAVIATE_API_KEY=WVF5YThaHlkYwhGUSmCRgsX3tD5ngdN8pkih - -# The Qdrant endpoint URL. Only available when VECTOR_STORE is `qdrant`. -QDRANT_URL=http://qdrant:6333 -QDRANT_API_KEY=difyai123456 -QDRANT_CLIENT_TIMEOUT=20 -QDRANT_GRPC_ENABLED=false -QDRANT_GRPC_PORT=6334 - -# Milvus configuration Only available when VECTOR_STORE is `milvus`. -# The milvus uri. -MILVUS_URI=http://127.0.0.1:19530 -MILVUS_TOKEN= -MILVUS_USER=root -MILVUS_PASSWORD=Milvus -MILVUS_ENABLE_HYBRID_SEARCH=False - -# MyScale configuration, only available when VECTOR_STORE is `myscale` -# For multi-language support, please set MYSCALE_FTS_PARAMS with referring to: -# https://myscale.com/docs/en/text-search/#understanding-fts-index-parameters -MYSCALE_HOST=myscale -MYSCALE_PORT=8123 -MYSCALE_USER=default -MYSCALE_PASSWORD= -MYSCALE_DATABASE=dify -MYSCALE_FTS_PARAMS= - -# Couchbase configurations, only available when VECTOR_STORE is `couchbase` -# The connection string must include hostname defined in the docker-compose file (couchbase-server in this case) -COUCHBASE_CONNECTION_STRING=couchbase://couchbase-server -COUCHBASE_USER=Administrator -COUCHBASE_PASSWORD=password -COUCHBASE_BUCKET_NAME=Embeddings -COUCHBASE_SCOPE_NAME=_default - -# pgvector configurations, only available when VECTOR_STORE is `pgvector` -PGVECTOR_HOST=pgvector -PGVECTOR_PORT=5432 -PGVECTOR_USER=postgres -PGVECTOR_PASSWORD=difyai123456 -PGVECTOR_DATABASE=dify -PGVECTOR_MIN_CONNECTION=1 -PGVECTOR_MAX_CONNECTION=5 - -# pgvecto-rs configurations, only available when VECTOR_STORE is `pgvecto-rs` -PGVECTO_RS_HOST=pgvecto-rs -PGVECTO_RS_PORT=5432 -PGVECTO_RS_USER=postgres -PGVECTO_RS_PASSWORD=difyai123456 -PGVECTO_RS_DATABASE=dify - -# analyticdb configurations, only available when VECTOR_STORE is `analyticdb` -ANALYTICDB_KEY_ID=your-ak -ANALYTICDB_KEY_SECRET=your-sk -ANALYTICDB_REGION_ID=cn-hangzhou -ANALYTICDB_INSTANCE_ID=gp-ab123456 -ANALYTICDB_ACCOUNT=testaccount -ANALYTICDB_PASSWORD=testpassword -ANALYTICDB_NAMESPACE=dify -ANALYTICDB_NAMESPACE_PASSWORD=difypassword -ANALYTICDB_HOST=gp-test.aliyuncs.com -ANALYTICDB_PORT=5432 -ANALYTICDB_MIN_CONNECTION=1 -ANALYTICDB_MAX_CONNECTION=5 - -# TiDB vector configurations, only available when VECTOR_STORE is `tidb` -TIDB_VECTOR_HOST=tidb -TIDB_VECTOR_PORT=4000 -TIDB_VECTOR_USER= -TIDB_VECTOR_PASSWORD= -TIDB_VECTOR_DATABASE=dify - -# Tidb on qdrant configuration, only available when VECTOR_STORE is `tidb_on_qdrant` -TIDB_ON_QDRANT_URL=http://127.0.0.1 -TIDB_ON_QDRANT_API_KEY=dify -TIDB_ON_QDRANT_CLIENT_TIMEOUT=20 -TIDB_ON_QDRANT_GRPC_ENABLED=false -TIDB_ON_QDRANT_GRPC_PORT=6334 -TIDB_PUBLIC_KEY=dify -TIDB_PRIVATE_KEY=dify -TIDB_API_URL=http://127.0.0.1 -TIDB_IAM_API_URL=http://127.0.0.1 -TIDB_REGION=regions/aws-us-east-1 -TIDB_PROJECT_ID=dify -TIDB_SPEND_LIMIT=100 - -# Chroma configuration, only available when VECTOR_STORE is `chroma` -CHROMA_HOST=127.0.0.1 -CHROMA_PORT=8000 -CHROMA_TENANT=default_tenant -CHROMA_DATABASE=default_database -CHROMA_AUTH_PROVIDER=chromadb.auth.token_authn.TokenAuthClientProvider -CHROMA_AUTH_CREDENTIALS= - -# Oracle configuration, only available when VECTOR_STORE is `oracle` -ORACLE_HOST=oracle -ORACLE_PORT=1521 -ORACLE_USER=dify -ORACLE_PASSWORD=dify -ORACLE_DATABASE=FREEPDB1 - -# relyt configurations, only available when VECTOR_STORE is `relyt` -RELYT_HOST=db -RELYT_PORT=5432 -RELYT_USER=postgres -RELYT_PASSWORD=difyai123456 -RELYT_DATABASE=postgres - -# open search configuration, only available when VECTOR_STORE is `opensearch` -OPENSEARCH_HOST=opensearch -OPENSEARCH_PORT=9200 -OPENSEARCH_USER=admin -OPENSEARCH_PASSWORD=admin -OPENSEARCH_SECURE=true - -# tencent vector configurations, only available when VECTOR_STORE is `tencent` -TENCENT_VECTOR_DB_URL=http://127.0.0.1 -TENCENT_VECTOR_DB_API_KEY=dify -TENCENT_VECTOR_DB_TIMEOUT=30 -TENCENT_VECTOR_DB_USERNAME=dify -TENCENT_VECTOR_DB_DATABASE=dify -TENCENT_VECTOR_DB_SHARD=1 -TENCENT_VECTOR_DB_REPLICAS=2 - -# ElasticSearch configuration, only available when VECTOR_STORE is `elasticsearch` -ELASTICSEARCH_HOST=0.0.0.0 -ELASTICSEARCH_PORT=9200 -ELASTICSEARCH_USERNAME=elastic -ELASTICSEARCH_PASSWORD=elastic -KIBANA_PORT=5601 - -# baidu vector configurations, only available when VECTOR_STORE is `baidu` -BAIDU_VECTOR_DB_ENDPOINT=http://127.0.0.1:5287 -BAIDU_VECTOR_DB_CONNECTION_TIMEOUT_MS=30000 -BAIDU_VECTOR_DB_ACCOUNT=root -BAIDU_VECTOR_DB_API_KEY=dify -BAIDU_VECTOR_DB_DATABASE=dify -BAIDU_VECTOR_DB_SHARD=1 -BAIDU_VECTOR_DB_REPLICAS=3 - -# VikingDB configurations, only available when VECTOR_STORE is `vikingdb` -VIKINGDB_ACCESS_KEY=your-ak -VIKINGDB_SECRET_KEY=your-sk -VIKINGDB_REGION=cn-shanghai -VIKINGDB_HOST=api-vikingdb.xxx.volces.com -VIKINGDB_SCHEMA=http -VIKINGDB_CONNECTION_TIMEOUT=30 -VIKINGDB_SOCKET_TIMEOUT=30 - -# Lindorm configuration, only available when VECTOR_STORE is `lindorm` -LINDORM_URL=http://lindorm:30070 -LINDORM_USERNAME=lindorm -LINDORM_PASSWORD=lindorm - -# OceanBase Vector configuration, only available when VECTOR_STORE is `oceanbase` -OCEANBASE_VECTOR_HOST=oceanbase -OCEANBASE_VECTOR_PORT=2881 -OCEANBASE_VECTOR_USER=root@test -OCEANBASE_VECTOR_PASSWORD=difyai123456 -OCEANBASE_VECTOR_DATABASE=test -OCEANBASE_CLUSTER_NAME=difyai -OCEANBASE_MEMORY_LIMIT=6G - -# Upstash Vector configuration, only available when VECTOR_STORE is `upstash` -UPSTASH_VECTOR_URL=https://xxx-vector.upstash.io -UPSTASH_VECTOR_TOKEN=dify - -# ------------------------------ -# Knowledge Configuration -# ------------------------------ - -# Upload file size limit, default 15M. -UPLOAD_FILE_SIZE_LIMIT=15 - -# The maximum number of files that can be uploaded at a time, default 5. -UPLOAD_FILE_BATCH_LIMIT=5 - -# ETL type, support: `dify`, `Unstructured` -# `dify` Dify's proprietary file extraction scheme -# `Unstructured` Unstructured.io file extraction scheme -ETL_TYPE=dify - -# Unstructured API path and API key, needs to be configured when ETL_TYPE is Unstructured -# Or using Unstructured for document extractor node for pptx. -# For example: http://unstructured:8000/general/v0/general -UNSTRUCTURED_API_URL= -UNSTRUCTURED_API_KEY= -SCARF_NO_ANALYTICS=true - -# ------------------------------ -# Model Configuration -# ------------------------------ - -# The maximum number of tokens allowed for prompt generation. -# This setting controls the upper limit of tokens that can be used by the LLM -# when generating a prompt in the prompt generation tool. -# Default: 512 tokens. -PROMPT_GENERATION_MAX_TOKENS=512 - -# The maximum number of tokens allowed for code generation. -# This setting controls the upper limit of tokens that can be used by the LLM -# when generating code in the code generation tool. -# Default: 1024 tokens. -CODE_GENERATION_MAX_TOKENS=1024 - -# ------------------------------ -# Multi-modal Configuration -# ------------------------------ - -# The format of the image/video/audio/document sent when the multi-modal model is input, -# the default is base64, optional url. -# The delay of the call in url mode will be lower than that in base64 mode. -# It is generally recommended to use the more compatible base64 mode. -# If configured as url, you need to configure FILES_URL as an externally accessible address so that the multi-modal model can access the image/video/audio/document. -MULTIMODAL_SEND_FORMAT=base64 -# Upload image file size limit, default 10M. -UPLOAD_IMAGE_FILE_SIZE_LIMIT=10 -# Upload video file size limit, default 100M. -UPLOAD_VIDEO_FILE_SIZE_LIMIT=100 -# Upload audio file size limit, default 50M. -UPLOAD_AUDIO_FILE_SIZE_LIMIT=50 - -# ------------------------------ -# Sentry Configuration -# Used for application monitoring and error log tracking. -# ------------------------------ -SENTRY_DSN= - -# API Service Sentry DSN address, default is empty, when empty, -# all monitoring information is not reported to Sentry. -# If not set, Sentry error reporting will be disabled. -API_SENTRY_DSN= -# API Service The reporting ratio of Sentry events, if it is 0.01, it is 1%. -API_SENTRY_TRACES_SAMPLE_RATE=1.0 -# API Service The reporting ratio of Sentry profiles, if it is 0.01, it is 1%. -API_SENTRY_PROFILES_SAMPLE_RATE=1.0 - -# Web Service Sentry DSN address, default is empty, when empty, -# all monitoring information is not reported to Sentry. -# If not set, Sentry error reporting will be disabled. -WEB_SENTRY_DSN= - -# ------------------------------ -# Notion Integration Configuration -# Variables can be obtained by applying for Notion integration: https://www.notion.so/my-integrations -# ------------------------------ - -# Configure as "public" or "internal". -# Since Notion's OAuth redirect URL only supports HTTPS, -# if deploying locally, please use Notion's internal integration. -NOTION_INTEGRATION_TYPE=public -# Notion OAuth client secret (used for public integration type) -NOTION_CLIENT_SECRET= -# Notion OAuth client id (used for public integration type) -NOTION_CLIENT_ID= -# Notion internal integration secret. -# If the value of NOTION_INTEGRATION_TYPE is "internal", -# you need to configure this variable. -NOTION_INTERNAL_SECRET= - -# ------------------------------ -# Mail related configuration -# ------------------------------ - -# Mail type, support: resend, smtp -MAIL_TYPE=resend - -# Default send from email address, if not specified -MAIL_DEFAULT_SEND_FROM= - -# API-Key for the Resend email provider, used when MAIL_TYPE is `resend`. -RESEND_API_URL=https://api.resend.com -RESEND_API_KEY=your-resend-api-key - - -# SMTP server configuration, used when MAIL_TYPE is `smtp` -SMTP_SERVER= -SMTP_PORT=465 -SMTP_USERNAME= -SMTP_PASSWORD= -SMTP_USE_TLS=true -SMTP_OPPORTUNISTIC_TLS=false - -# ------------------------------ -# Others Configuration -# ------------------------------ - -# Maximum length of segmentation tokens for indexing -INDEXING_MAX_SEGMENTATION_TOKENS_LENGTH=4000 - -# Member invitation link valid time (hours), -# Default: 72. -INVITE_EXPIRY_HOURS=72 - -# Reset password token valid time (minutes), -RESET_PASSWORD_TOKEN_EXPIRY_MINUTES=5 - -# The sandbox service endpoint. -CODE_EXECUTION_ENDPOINT=http://sandbox:8194 -CODE_EXECUTION_API_KEY=dify-sandbox -CODE_MAX_NUMBER=9223372036854775807 -CODE_MIN_NUMBER=-9223372036854775808 -CODE_MAX_DEPTH=5 -CODE_MAX_PRECISION=20 -CODE_MAX_STRING_LENGTH=80000 -CODE_MAX_STRING_ARRAY_LENGTH=30 -CODE_MAX_OBJECT_ARRAY_LENGTH=30 -CODE_MAX_NUMBER_ARRAY_LENGTH=1000 -CODE_EXECUTION_CONNECT_TIMEOUT=10 -CODE_EXECUTION_READ_TIMEOUT=60 -CODE_EXECUTION_WRITE_TIMEOUT=10 -TEMPLATE_TRANSFORM_MAX_LENGTH=80000 - -# Workflow runtime configuration -WORKFLOW_MAX_EXECUTION_STEPS=500 -WORKFLOW_MAX_EXECUTION_TIME=1200 -WORKFLOW_CALL_MAX_DEPTH=5 -MAX_VARIABLE_SIZE=204800 -WORKFLOW_PARALLEL_DEPTH_LIMIT=3 -WORKFLOW_FILE_UPLOAD_LIMIT=10 - -# HTTP request node in workflow configuration -HTTP_REQUEST_NODE_MAX_BINARY_SIZE=10485760 -HTTP_REQUEST_NODE_MAX_TEXT_SIZE=1048576 - -# SSRF Proxy server HTTP URL -SSRF_PROXY_HTTP_URL=http://ssrf_proxy:3128 -# SSRF Proxy server HTTPS URL -SSRF_PROXY_HTTPS_URL=http://ssrf_proxy:3128 - -# ------------------------------ -# Environment Variables for web Service -# ------------------------------ - -# The timeout for the text generation in millisecond -TEXT_GENERATION_TIMEOUT_MS=60000 - -# ------------------------------ -# Environment Variables for db Service -# ------------------------------ - -PGUSER=${DB_USERNAME} -# The password for the default postgres user. -POSTGRES_PASSWORD=${DB_PASSWORD} -# The name of the default postgres database. -POSTGRES_DB=${DB_DATABASE} -# postgres data directory -PGDATA=/var/lib/postgresql/data/pgdata - -# ------------------------------ -# Environment Variables for sandbox Service -# ------------------------------ - -# The API key for the sandbox service -SANDBOX_API_KEY=dify-sandbox -# The mode in which the Gin framework runs -SANDBOX_GIN_MODE=release -# The timeout for the worker in seconds -SANDBOX_WORKER_TIMEOUT=15 -# Enable network for the sandbox service -SANDBOX_ENABLE_NETWORK=true -# HTTP proxy URL for SSRF protection -SANDBOX_HTTP_PROXY=http://ssrf_proxy:3128 -# HTTPS proxy URL for SSRF protection -SANDBOX_HTTPS_PROXY=http://ssrf_proxy:3128 -# The port on which the sandbox service runs -SANDBOX_PORT=8194 - -# ------------------------------ -# Environment Variables for weaviate Service -# (only used when VECTOR_STORE is weaviate) -# ------------------------------ -WEAVIATE_PERSISTENCE_DATA_PATH=/var/lib/weaviate -WEAVIATE_QUERY_DEFAULTS_LIMIT=25 -WEAVIATE_AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED=true -WEAVIATE_DEFAULT_VECTORIZER_MODULE=none -WEAVIATE_CLUSTER_HOSTNAME=node1 -WEAVIATE_AUTHENTICATION_APIKEY_ENABLED=true -WEAVIATE_AUTHENTICATION_APIKEY_ALLOWED_KEYS=WVF5YThaHlkYwhGUSmCRgsX3tD5ngdN8pkih -WEAVIATE_AUTHENTICATION_APIKEY_USERS=hello@dify.ai -WEAVIATE_AUTHORIZATION_ADMINLIST_ENABLED=true -WEAVIATE_AUTHORIZATION_ADMINLIST_USERS=hello@dify.ai - -# ------------------------------ -# Environment Variables for Chroma -# (only used when VECTOR_STORE is chroma) -# ------------------------------ - -# Authentication credentials for Chroma server -CHROMA_SERVER_AUTHN_CREDENTIALS=difyai123456 -# Authentication provider for Chroma server -CHROMA_SERVER_AUTHN_PROVIDER=chromadb.auth.token_authn.TokenAuthenticationServerProvider -# Persistence setting for Chroma server -CHROMA_IS_PERSISTENT=TRUE - -# ------------------------------ -# Environment Variables for Oracle Service -# (only used when VECTOR_STORE is Oracle) -# ------------------------------ -ORACLE_PWD=Dify123456 -ORACLE_CHARACTERSET=AL32UTF8 - -# ------------------------------ -# Environment Variables for milvus Service -# (only used when VECTOR_STORE is milvus) -# ------------------------------ -# ETCD configuration for auto compaction mode -ETCD_AUTO_COMPACTION_MODE=revision -# ETCD configuration for auto compaction retention in terms of number of revisions -ETCD_AUTO_COMPACTION_RETENTION=1000 -# ETCD configuration for backend quota in bytes -ETCD_QUOTA_BACKEND_BYTES=4294967296 -# ETCD configuration for the number of changes before triggering a snapshot -ETCD_SNAPSHOT_COUNT=50000 -# MinIO access key for authentication -MINIO_ACCESS_KEY=minioadmin -# MinIO secret key for authentication -MINIO_SECRET_KEY=minioadmin -# ETCD service endpoints -ETCD_ENDPOINTS=etcd:2379 -# MinIO service address -MINIO_ADDRESS=minio:9000 -# Enable or disable security authorization -MILVUS_AUTHORIZATION_ENABLED=true - -# ------------------------------ -# Environment Variables for pgvector / pgvector-rs Service -# (only used when VECTOR_STORE is pgvector / pgvector-rs) -# ------------------------------ -PGVECTOR_PGUSER=postgres -# The password for the default postgres user. -PGVECTOR_POSTGRES_PASSWORD=difyai123456 -# The name of the default postgres database. -PGVECTOR_POSTGRES_DB=dify -# postgres data directory -PGVECTOR_PGDATA=/var/lib/postgresql/data/pgdata - -# ------------------------------ -# Environment Variables for opensearch -# (only used when VECTOR_STORE is opensearch) -# ------------------------------ -OPENSEARCH_DISCOVERY_TYPE=single-node -OPENSEARCH_BOOTSTRAP_MEMORY_LOCK=true -OPENSEARCH_JAVA_OPTS_MIN=512m -OPENSEARCH_JAVA_OPTS_MAX=1024m -OPENSEARCH_INITIAL_ADMIN_PASSWORD=Qazwsxedc!@#123 -OPENSEARCH_MEMLOCK_SOFT=-1 -OPENSEARCH_MEMLOCK_HARD=-1 -OPENSEARCH_NOFILE_SOFT=65536 -OPENSEARCH_NOFILE_HARD=65536 - -# ------------------------------ -# Environment Variables for Nginx reverse proxy -# ------------------------------ -NGINX_SERVER_NAME=_ -NGINX_HTTPS_ENABLED=false -# HTTP port -NGINX_PORT=80 -# SSL settings are only applied when HTTPS_ENABLED is true -NGINX_SSL_PORT=443 -# if HTTPS_ENABLED is true, you're required to add your own SSL certificates/keys to the `./nginx/ssl` directory -# and modify the env vars below accordingly. -NGINX_SSL_CERT_FILENAME=dify.crt -NGINX_SSL_CERT_KEY_FILENAME=dify.key -NGINX_SSL_PROTOCOLS=TLSv1.1 TLSv1.2 TLSv1.3 - -# Nginx performance tuning -NGINX_WORKER_PROCESSES=auto -NGINX_CLIENT_MAX_BODY_SIZE=15M -NGINX_KEEPALIVE_TIMEOUT=65 - -# Proxy settings -NGINX_PROXY_READ_TIMEOUT=3600s -NGINX_PROXY_SEND_TIMEOUT=3600s - -# Set true to accept requests for /.well-known/acme-challenge/ -NGINX_ENABLE_CERTBOT_CHALLENGE=false - -# ------------------------------ -# Certbot Configuration -# ------------------------------ - -# Email address (required to get certificates from Let's Encrypt) -CERTBOT_EMAIL=your_email@example.com - -# Domain name -CERTBOT_DOMAIN=your_domain.com - -# certbot command options -# i.e: --force-renewal --dry-run --test-cert --debug -CERTBOT_OPTIONS= - -# ------------------------------ -# Environment Variables for SSRF Proxy -# ------------------------------ -SSRF_HTTP_PORT=3128 -SSRF_COREDUMP_DIR=/var/spool/squid -SSRF_REVERSE_PROXY_PORT=8194 -SSRF_SANDBOX_HOST=sandbox - -# ------------------------------ -# docker env var for specifying vector db type at startup -# (based on the vector db type, the corresponding docker -# compose profile will be used) -# if you want to use unstructured, add ',unstructured' to the end -# ------------------------------ -COMPOSE_PROFILES=${VECTOR_STORE:-weaviate} - -# ------------------------------ -# Docker Compose Service Expose Host Port Configurations -# ------------------------------ -EXPOSE_NGINX_PORT=80 -EXPOSE_NGINX_SSL_PORT=443 - -# ---------------------------------------------------------------------------- -# ModelProvider & Tool Position Configuration -# Used to specify the model providers and tools that can be used in the app. -# ---------------------------------------------------------------------------- - -# Pin, include, and exclude tools -# Use comma-separated values with no spaces between items. -# Example: POSITION_TOOL_PINS=bing,google -POSITION_TOOL_PINS= -POSITION_TOOL_INCLUDES= -POSITION_TOOL_EXCLUDES= - -# Pin, include, and exclude model providers -# Use comma-separated values with no spaces between items. -# Example: POSITION_PROVIDER_PINS=openai,openllm -POSITION_PROVIDER_PINS= -POSITION_PROVIDER_INCLUDES= -POSITION_PROVIDER_EXCLUDES= - -# CSP https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -CSP_WHITELIST= - -# Enable or disable create tidb service job -CREATE_TIDB_SERVICE_JOB_ENABLED=false - -# Maximum number of submitted thread count in a ThreadPool for parallel node execution -MAX_SUBMIT_COUNT=100 - -# The maximum number of top-k value for RAG. -TOP_K_MAX_VALUE=10 diff --git a/pre/docker/README.md b/pre/docker/README.md deleted file mode 100644 index c3cd1f9..0000000 --- a/pre/docker/README.md +++ /dev/null @@ -1,99 +0,0 @@ -## README for docker Deployment - -Welcome to the new `docker` directory for deploying Dify using Docker Compose. This README outlines the updates, deployment instructions, and migration details for existing users. - -### What's Updated - -- **Certbot Container**: `docker-compose.yaml` now contains `certbot` for managing SSL certificates. This container automatically renews certificates and ensures secure HTTPS connections. - For more information, refer `docker/certbot/README.md`. - -- **Persistent Environment Variables**: Environment variables are now managed through a `.env` file, ensuring that your configurations persist across deployments. - - > What is `.env`?

- > The `.env` file is a crucial component in Docker and Docker Compose environments, serving as a centralized configuration file where you can define environment variables that are accessible to the containers at runtime. This file simplifies the management of environment settings across different stages of development, testing, and production, providing consistency and ease of configuration to deployments. - -- **Unified Vector Database Services**: All vector database services are now managed from a single Docker Compose file `docker-compose.yaml`. You can switch between different vector databases by setting the `VECTOR_STORE` environment variable in your `.env` file. -- **Mandatory .env File**: A `.env` file is now required to run `docker compose up`. This file is crucial for configuring your deployment and for any custom settings to persist through upgrades. -- **Legacy Support**: Previous deployment files are now located in the `docker-legacy` directory and will no longer be maintained. - -### How to Deploy Dify with `docker-compose.yaml` - -1. **Prerequisites**: Ensure Docker and Docker Compose are installed on your system. -2. **Environment Setup**: - - Navigate to the `docker` directory. - - Copy the `.env.example` file to a new file named `.env` by running `cp .env.example .env`. - - Customize the `.env` file as needed. Refer to the `.env.example` file for detailed configuration options. -3. **Running the Services**: - - Execute `docker compose up` from the `docker` directory to start the services. - - To specify a vector database, set the `VECTOR_STORE` variable in your `.env` file to your desired vector database service, such as `milvus`, `weaviate`, or `opensearch`. -4. **SSL Certificate Setup**: - - Rrefer `docker/certbot/README.md` to set up SSL certificates using Certbot. - -### How to Deploy Middleware for Developing Dify - -1. **Middleware Setup**: - - Use the `docker-compose.middleware.yaml` for setting up essential middleware services like databases and caches. - - Navigate to the `docker` directory. - - Ensure the `middleware.env` file is created by running `cp middleware.env.example middleware.env` (refer to the `middleware.env.example` file). -2. **Running Middleware Services**: - - Execute `docker-compose -f docker-compose.middleware.yaml up --env-file middleware.env -d` to start the middleware services. - -### Migration for Existing Users - -For users migrating from the `docker-legacy` setup: - -1. **Review Changes**: Familiarize yourself with the new `.env` configuration and Docker Compose setup. -2. **Transfer Customizations**: - - If you have customized configurations such as `docker-compose.yaml`, `ssrf_proxy/squid.conf`, or `nginx/conf.d/default.conf`, you will need to reflect these changes in the `.env` file you create. -3. **Data Migration**: - - Ensure that data from services like databases and caches is backed up and migrated appropriately to the new structure if necessary. - -### Overview of `.env` - -#### Key Modules and Customization - -- **Vector Database Services**: Depending on the type of vector database used (`VECTOR_STORE`), users can set specific endpoints, ports, and authentication details. -- **Storage Services**: Depending on the storage type (`STORAGE_TYPE`), users can configure specific settings for S3, Azure Blob, Google Storage, etc. -- **API and Web Services**: Users can define URLs and other settings that affect how the API and web frontends operate. - -#### Other notable variables - -The `.env.example` file provided in the Docker setup is extensive and covers a wide range of configuration options. It is structured into several sections, each pertaining to different aspects of the application and its services. Here are some of the key sections and variables: - -1. **Common Variables**: - - `CONSOLE_API_URL`, `SERVICE_API_URL`: URLs for different API services. - - `APP_WEB_URL`: Frontend application URL. - - `FILES_URL`: Base URL for file downloads and previews. - -2. **Server Configuration**: - - `LOG_LEVEL`, `DEBUG`, `FLASK_DEBUG`: Logging and debug settings. - - `SECRET_KEY`: A key for encrypting session cookies and other sensitive data. - -3. **Database Configuration**: - - `DB_USERNAME`, `DB_PASSWORD`, `DB_HOST`, `DB_PORT`, `DB_DATABASE`: PostgreSQL database credentials and connection details. - -4. **Redis Configuration**: - - `REDIS_HOST`, `REDIS_PORT`, `REDIS_PASSWORD`: Redis server connection settings. - -5. **Celery Configuration**: - - `CELERY_BROKER_URL`: Configuration for Celery message broker. - -6. **Storage Configuration**: - - `STORAGE_TYPE`, `S3_BUCKET_NAME`, `AZURE_BLOB_ACCOUNT_NAME`: Settings for file storage options like local, S3, Azure Blob, etc. - -7. **Vector Database Configuration**: - - `VECTOR_STORE`: Type of vector database (e.g., `weaviate`, `milvus`). - - Specific settings for each vector store like `WEAVIATE_ENDPOINT`, `MILVUS_URI`. - -8. **CORS Configuration**: - - `WEB_API_CORS_ALLOW_ORIGINS`, `CONSOLE_CORS_ALLOW_ORIGINS`: Settings for cross-origin resource sharing. - -9. **Other Service-Specific Environment Variables**: - - Each service like `nginx`, `redis`, `db`, and vector databases have specific environment variables that are directly referenced in the `docker-compose.yaml`. - -### Additional Information - -- **Continuous Improvement Phase**: We are actively seeking feedback from the community to refine and enhance the deployment process. As more users adopt this new method, we will continue to make improvements based on your experiences and suggestions. -- **Support**: For detailed configuration options and environment variable settings, refer to the `.env.example` file and the Docker Compose configuration files in the `docker` directory. - -This README aims to guide you through the deployment process using the new Docker Compose setup. For any issues or further assistance, please refer to the official documentation or contact support. diff --git a/pre/docker/certbot/README.md b/pre/docker/certbot/README.md deleted file mode 100644 index 21be34b..0000000 --- a/pre/docker/certbot/README.md +++ /dev/null @@ -1,76 +0,0 @@ -# Launching new servers with SSL certificates - -## Short description - -docker compose certbot configurations with Backward compatibility (without certbot container). -Use `docker compose --profile certbot up` to use this features. - -## The simplest way for launching new servers with SSL certificates - -1. Get letsencrypt certs - set `.env` values - ```properties - NGINX_SSL_CERT_FILENAME=fullchain.pem - NGINX_SSL_CERT_KEY_FILENAME=privkey.pem - NGINX_ENABLE_CERTBOT_CHALLENGE=true - CERTBOT_DOMAIN=your_domain.com - CERTBOT_EMAIL=example@your_domain.com - ``` - execute command: - ```shell - docker network prune - docker compose --profile certbot up --force-recreate -d - ``` - then after the containers launched: - ```shell - docker compose exec -it certbot /bin/sh /update-cert.sh - ``` -2. Edit `.env` file and `docker compose --profile certbot up` again. - set `.env` value additionally - ```properties - NGINX_HTTPS_ENABLED=true - ``` - execute command: - ```shell - docker compose --profile certbot up -d --no-deps --force-recreate nginx - ``` - Then you can access your serve with HTTPS. - [https://your_domain.com](https://your_domain.com) - -## SSL certificates renewal - -For SSL certificates renewal, execute commands below: - -```shell -docker compose exec -it certbot /bin/sh /update-cert.sh -docker compose exec nginx nginx -s reload -``` - -## Options for certbot - -`CERTBOT_OPTIONS` key might be helpful for testing. i.e., - -```properties -CERTBOT_OPTIONS=--dry-run -``` - -To apply changes to `CERTBOT_OPTIONS`, regenerate the certbot container before updating the certificates. - -```shell -docker compose --profile certbot up -d --no-deps --force-recreate certbot -docker compose exec -it certbot /bin/sh /update-cert.sh -``` - -Then, reload the nginx container if necessary. - -```shell -docker compose exec nginx nginx -s reload -``` - -## For legacy servers - -To use cert files dir `nginx/ssl` as before, simply launch containers WITHOUT `--profile certbot` option. - -```shell -docker compose up -d -``` diff --git a/pre/docker/certbot/docker-entrypoint.sh b/pre/docker/certbot/docker-entrypoint.sh deleted file mode 100755 index a70ecd8..0000000 --- a/pre/docker/certbot/docker-entrypoint.sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/sh -set -e - -printf '%s\n' "Docker entrypoint script is running" - -printf '%s\n' "\nChecking specific environment variables:" -printf '%s\n' "CERTBOT_EMAIL: ${CERTBOT_EMAIL:-Not set}" -printf '%s\n' "CERTBOT_DOMAIN: ${CERTBOT_DOMAIN:-Not set}" -printf '%s\n' "CERTBOT_OPTIONS: ${CERTBOT_OPTIONS:-Not set}" - -printf '%s\n' "\nChecking mounted directories:" -for dir in "/etc/letsencrypt" "/var/www/html" "/var/log/letsencrypt"; do - if [ -d "$dir" ]; then - printf '%s\n' "$dir exists. Contents:" - ls -la "$dir" - else - printf '%s\n' "$dir does not exist." - fi -done - -printf '%s\n' "\nGenerating update-cert.sh from template" -sed -e "s|\${CERTBOT_EMAIL}|$CERTBOT_EMAIL|g" \ - -e "s|\${CERTBOT_DOMAIN}|$CERTBOT_DOMAIN|g" \ - -e "s|\${CERTBOT_OPTIONS}|$CERTBOT_OPTIONS|g" \ - /update-cert.template.txt > /update-cert.sh - -chmod +x /update-cert.sh - -printf '%s\n' "\nExecuting command:" "$@" -exec "$@" diff --git a/pre/docker/certbot/update-cert.template.txt b/pre/docker/certbot/update-cert.template.txt deleted file mode 100755 index 16786a1..0000000 --- a/pre/docker/certbot/update-cert.template.txt +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash -set -e - -DOMAIN="${CERTBOT_DOMAIN}" -EMAIL="${CERTBOT_EMAIL}" -OPTIONS="${CERTBOT_OPTIONS}" -CERT_NAME="${DOMAIN}" # 証明書名をドメイン名と同じにする - -# Check if the certificate already exists -if [ -f "/etc/letsencrypt/renewal/${CERT_NAME}.conf" ]; then - echo "Certificate exists. Attempting to renew..." - certbot renew --noninteractive --cert-name ${CERT_NAME} --webroot --webroot-path=/var/www/html --email ${EMAIL} --agree-tos --no-eff-email ${OPTIONS} -else - echo "Certificate does not exist. Obtaining a new certificate..." - certbot certonly --noninteractive --webroot --webroot-path=/var/www/html --email ${EMAIL} --agree-tos --no-eff-email -d ${DOMAIN} ${OPTIONS} -fi -echo "Certificate operation successful" -# Note: Nginx reload should be handled outside this container -echo "Please ensure to reload Nginx to apply any certificate changes." diff --git a/pre/docker/couchbase-server/Dockerfile b/pre/docker/couchbase-server/Dockerfile deleted file mode 100644 index bd8af64..0000000 --- a/pre/docker/couchbase-server/Dockerfile +++ /dev/null @@ -1,4 +0,0 @@ -FROM couchbase/server:latest AS stage_base -# FROM couchbase:latest AS stage_base -COPY init-cbserver.sh /opt/couchbase/init/ -RUN chmod +x /opt/couchbase/init/init-cbserver.sh \ No newline at end of file diff --git a/pre/docker/couchbase-server/init-cbserver.sh b/pre/docker/couchbase-server/init-cbserver.sh deleted file mode 100755 index e66bc18..0000000 --- a/pre/docker/couchbase-server/init-cbserver.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/bash -# used to start couchbase server - can't get around this as docker compose only allows you to start one command - so we have to start couchbase like the standard couchbase Dockerfile would -# https://github.com/couchbase/docker/blob/master/enterprise/couchbase-server/7.2.0/Dockerfile#L88 - -/entrypoint.sh couchbase-server & - -# track if setup is complete so we don't try to setup again -FILE=/opt/couchbase/init/setupComplete.txt - -if ! [ -f "$FILE" ]; then - # used to automatically create the cluster based on environment variables - # https://docs.couchbase.com/server/current/cli/cbcli/couchbase-cli-cluster-init.html - - echo $COUCHBASE_ADMINISTRATOR_USERNAME ":" $COUCHBASE_ADMINISTRATOR_PASSWORD - - sleep 20s - /opt/couchbase/bin/couchbase-cli cluster-init -c 127.0.0.1 \ - --cluster-username $COUCHBASE_ADMINISTRATOR_USERNAME \ - --cluster-password $COUCHBASE_ADMINISTRATOR_PASSWORD \ - --services data,index,query,fts \ - --cluster-ramsize $COUCHBASE_RAM_SIZE \ - --cluster-index-ramsize $COUCHBASE_INDEX_RAM_SIZE \ - --cluster-eventing-ramsize $COUCHBASE_EVENTING_RAM_SIZE \ - --cluster-fts-ramsize $COUCHBASE_FTS_RAM_SIZE \ - --index-storage-setting default - - sleep 2s - - # used to auto create the bucket based on environment variables - # https://docs.couchbase.com/server/current/cli/cbcli/couchbase-cli-bucket-create.html - - /opt/couchbase/bin/couchbase-cli bucket-create -c localhost:8091 \ - --username $COUCHBASE_ADMINISTRATOR_USERNAME \ - --password $COUCHBASE_ADMINISTRATOR_PASSWORD \ - --bucket $COUCHBASE_BUCKET \ - --bucket-ramsize $COUCHBASE_BUCKET_RAMSIZE \ - --bucket-type couchbase - - # create file so we know that the cluster is setup and don't run the setup again - touch $FILE -fi - # docker compose will stop the container from running unless we do this - # known issue and workaround - tail -f /dev/null diff --git a/pre/docker/docker-compose-template.yaml b/pre/docker/docker-compose-template.yaml deleted file mode 100644 index 8aafc61..0000000 --- a/pre/docker/docker-compose-template.yaml +++ /dev/null @@ -1,576 +0,0 @@ -x-shared-env: &shared-api-worker-env -services: - # API service - api: - image: langgenius/dify-api:0.15.2 - restart: always - environment: - # Use the shared environment variables. - <<: *shared-api-worker-env - # Startup mode, 'api' starts the API server. - MODE: api - SENTRY_DSN: ${API_SENTRY_DSN:-} - SENTRY_TRACES_SAMPLE_RATE: ${API_SENTRY_TRACES_SAMPLE_RATE:-1.0} - SENTRY_PROFILES_SAMPLE_RATE: ${API_SENTRY_PROFILES_SAMPLE_RATE:-1.0} - depends_on: - - db - - redis - volumes: - # Mount the storage directory to the container, for storing user files. - - ./volumes/app/storage:/app/api/storage - networks: - - ssrf_proxy_network - - default - - # worker service - # The Celery worker for processing the queue. - worker: - image: langgenius/dify-api:0.15.2 - restart: always - environment: - # Use the shared environment variables. - <<: *shared-api-worker-env - # Startup mode, 'worker' starts the Celery worker for processing the queue. - MODE: worker - SENTRY_DSN: ${API_SENTRY_DSN:-} - SENTRY_TRACES_SAMPLE_RATE: ${API_SENTRY_TRACES_SAMPLE_RATE:-1.0} - SENTRY_PROFILES_SAMPLE_RATE: ${API_SENTRY_PROFILES_SAMPLE_RATE:-1.0} - depends_on: - - db - - redis - volumes: - # Mount the storage directory to the container, for storing user files. - - ./volumes/app/storage:/app/api/storage - networks: - - ssrf_proxy_network - - default - - # Frontend web application. - web: - image: langgenius/dify-web:0.15.2 - restart: always - environment: - CONSOLE_API_URL: ${CONSOLE_API_URL:-} - APP_API_URL: ${APP_API_URL:-} - SENTRY_DSN: ${WEB_SENTRY_DSN:-} - NEXT_TELEMETRY_DISABLED: ${NEXT_TELEMETRY_DISABLED:-0} - TEXT_GENERATION_TIMEOUT_MS: ${TEXT_GENERATION_TIMEOUT_MS:-60000} - CSP_WHITELIST: ${CSP_WHITELIST:-} - TOP_K_MAX_VALUE: ${TOP_K_MAX_VALUE:-} - INDEXING_MAX_SEGMENTATION_TOKENS_LENGTH: ${INDEXING_MAX_SEGMENTATION_TOKENS_LENGTH:-} - - # The postgres database. - db: - image: postgres:15-alpine - restart: always - environment: - PGUSER: ${PGUSER:-postgres} - POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-difyai123456} - POSTGRES_DB: ${POSTGRES_DB:-dify} - PGDATA: ${PGDATA:-/var/lib/postgresql/data/pgdata} - command: > - postgres -c 'max_connections=${POSTGRES_MAX_CONNECTIONS:-100}' - -c 'shared_buffers=${POSTGRES_SHARED_BUFFERS:-128MB}' - -c 'work_mem=${POSTGRES_WORK_MEM:-4MB}' - -c 'maintenance_work_mem=${POSTGRES_MAINTENANCE_WORK_MEM:-64MB}' - -c 'effective_cache_size=${POSTGRES_EFFECTIVE_CACHE_SIZE:-4096MB}' - volumes: - - ./volumes/db/data:/var/lib/postgresql/data - healthcheck: - test: [ 'CMD', 'pg_isready' ] - interval: 1s - timeout: 3s - retries: 30 - - # The redis cache. - redis: - image: redis:6-alpine - restart: always - environment: - REDISCLI_AUTH: ${REDIS_PASSWORD:-difyai123456} - volumes: - # Mount the redis data directory to the container. - - ./volumes/redis/data:/data - # Set the redis password when startup redis server. - command: redis-server --requirepass ${REDIS_PASSWORD:-difyai123456} - healthcheck: - test: [ 'CMD', 'redis-cli', 'ping' ] - - # The DifySandbox - sandbox: - image: langgenius/dify-sandbox:0.2.10 - restart: always - environment: - # The DifySandbox configurations - # Make sure you are changing this key for your deployment with a strong key. - # You can generate a strong key using `openssl rand -base64 42`. - API_KEY: ${SANDBOX_API_KEY:-dify-sandbox} - GIN_MODE: ${SANDBOX_GIN_MODE:-release} - WORKER_TIMEOUT: ${SANDBOX_WORKER_TIMEOUT:-15} - ENABLE_NETWORK: ${SANDBOX_ENABLE_NETWORK:-true} - HTTP_PROXY: ${SANDBOX_HTTP_PROXY:-http://ssrf_proxy:3128} - HTTPS_PROXY: ${SANDBOX_HTTPS_PROXY:-http://ssrf_proxy:3128} - SANDBOX_PORT: ${SANDBOX_PORT:-8194} - volumes: - - ./volumes/sandbox/dependencies:/dependencies - healthcheck: - test: [ 'CMD', 'curl', '-f', 'http://localhost:8194/health' ] - networks: - - ssrf_proxy_network - - # ssrf_proxy server - # for more information, please refer to - # https://docs.dify.ai/learn-more/faq/install-faq#id-18.-why-is-ssrf_proxy-needed - ssrf_proxy: - image: ubuntu/squid:latest - restart: always - volumes: - - ./ssrf_proxy/squid.conf.template:/etc/squid/squid.conf.template - - ./ssrf_proxy/docker-entrypoint.sh:/docker-entrypoint-mount.sh - entrypoint: [ 'sh', '-c', "cp /docker-entrypoint-mount.sh /docker-entrypoint.sh && sed -i 's/\r$$//' /docker-entrypoint.sh && chmod +x /docker-entrypoint.sh && /docker-entrypoint.sh" ] - environment: - # pls clearly modify the squid env vars to fit your network environment. - HTTP_PORT: ${SSRF_HTTP_PORT:-3128} - COREDUMP_DIR: ${SSRF_COREDUMP_DIR:-/var/spool/squid} - REVERSE_PROXY_PORT: ${SSRF_REVERSE_PROXY_PORT:-8194} - SANDBOX_HOST: ${SSRF_SANDBOX_HOST:-sandbox} - SANDBOX_PORT: ${SANDBOX_PORT:-8194} - networks: - - ssrf_proxy_network - - default - - # Certbot service - # use `docker-compose --profile certbot up` to start the certbot service. - certbot: - image: certbot/certbot - profiles: - - certbot - volumes: - - ./volumes/certbot/conf:/etc/letsencrypt - - ./volumes/certbot/www:/var/www/html - - ./volumes/certbot/logs:/var/log/letsencrypt - - ./volumes/certbot/conf/live:/etc/letsencrypt/live - - ./certbot/update-cert.template.txt:/update-cert.template.txt - - ./certbot/docker-entrypoint.sh:/docker-entrypoint.sh - environment: - - CERTBOT_EMAIL=${CERTBOT_EMAIL} - - CERTBOT_DOMAIN=${CERTBOT_DOMAIN} - - CERTBOT_OPTIONS=${CERTBOT_OPTIONS:-} - entrypoint: [ '/docker-entrypoint.sh' ] - command: [ 'tail', '-f', '/dev/null' ] - - # The nginx reverse proxy. - # used for reverse proxying the API service and Web service. - nginx: - image: nginx:latest - restart: always - volumes: - - ./nginx/nginx.conf.template:/etc/nginx/nginx.conf.template - - ./nginx/proxy.conf.template:/etc/nginx/proxy.conf.template - - ./nginx/https.conf.template:/etc/nginx/https.conf.template - - ./nginx/conf.d:/etc/nginx/conf.d - - ./nginx/docker-entrypoint.sh:/docker-entrypoint-mount.sh - - ./nginx/ssl:/etc/ssl # cert dir (legacy) - - ./volumes/certbot/conf/live:/etc/letsencrypt/live # cert dir (with certbot container) - - ./volumes/certbot/conf:/etc/letsencrypt - - ./volumes/certbot/www:/var/www/html - entrypoint: [ 'sh', '-c', "cp /docker-entrypoint-mount.sh /docker-entrypoint.sh && sed -i 's/\r$$//' /docker-entrypoint.sh && chmod +x /docker-entrypoint.sh && /docker-entrypoint.sh" ] - environment: - NGINX_SERVER_NAME: ${NGINX_SERVER_NAME:-_} - NGINX_HTTPS_ENABLED: ${NGINX_HTTPS_ENABLED:-false} - NGINX_SSL_PORT: ${NGINX_SSL_PORT:-443} - NGINX_PORT: ${NGINX_PORT:-80} - # You're required to add your own SSL certificates/keys to the `./nginx/ssl` directory - # and modify the env vars below in .env if HTTPS_ENABLED is true. - NGINX_SSL_CERT_FILENAME: ${NGINX_SSL_CERT_FILENAME:-dify.crt} - NGINX_SSL_CERT_KEY_FILENAME: ${NGINX_SSL_CERT_KEY_FILENAME:-dify.key} - NGINX_SSL_PROTOCOLS: ${NGINX_SSL_PROTOCOLS:-TLSv1.1 TLSv1.2 TLSv1.3} - NGINX_WORKER_PROCESSES: ${NGINX_WORKER_PROCESSES:-auto} - NGINX_CLIENT_MAX_BODY_SIZE: ${NGINX_CLIENT_MAX_BODY_SIZE:-15M} - NGINX_KEEPALIVE_TIMEOUT: ${NGINX_KEEPALIVE_TIMEOUT:-65} - NGINX_PROXY_READ_TIMEOUT: ${NGINX_PROXY_READ_TIMEOUT:-3600s} - NGINX_PROXY_SEND_TIMEOUT: ${NGINX_PROXY_SEND_TIMEOUT:-3600s} - NGINX_ENABLE_CERTBOT_CHALLENGE: ${NGINX_ENABLE_CERTBOT_CHALLENGE:-false} - CERTBOT_DOMAIN: ${CERTBOT_DOMAIN:-} - depends_on: - - api - - web - ports: - - '${EXPOSE_NGINX_PORT:-80}:${NGINX_PORT:-80}' - - '${EXPOSE_NGINX_SSL_PORT:-443}:${NGINX_SSL_PORT:-443}' - - # The TiDB vector store. - # For production use, please refer to https://github.com/pingcap/tidb-docker-compose - tidb: - image: pingcap/tidb:v8.4.0 - profiles: - - tidb - command: - - --store=unistore - restart: always - - # The Weaviate vector store. - weaviate: - image: semitechnologies/weaviate:1.19.0 - profiles: - - '' - - weaviate - restart: always - volumes: - # Mount the Weaviate data directory to the con tainer. - - ./volumes/weaviate:/var/lib/weaviate - environment: - # The Weaviate configurations - # You can refer to the [Weaviate](https://weaviate.io/developers/weaviate/config-refs/env-vars) documentation for more information. - PERSISTENCE_DATA_PATH: ${WEAVIATE_PERSISTENCE_DATA_PATH:-/var/lib/weaviate} - QUERY_DEFAULTS_LIMIT: ${WEAVIATE_QUERY_DEFAULTS_LIMIT:-25} - AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED: ${WEAVIATE_AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED:-false} - DEFAULT_VECTORIZER_MODULE: ${WEAVIATE_DEFAULT_VECTORIZER_MODULE:-none} - CLUSTER_HOSTNAME: ${WEAVIATE_CLUSTER_HOSTNAME:-node1} - AUTHENTICATION_APIKEY_ENABLED: ${WEAVIATE_AUTHENTICATION_APIKEY_ENABLED:-true} - AUTHENTICATION_APIKEY_ALLOWED_KEYS: ${WEAVIATE_AUTHENTICATION_APIKEY_ALLOWED_KEYS:-WVF5YThaHlkYwhGUSmCRgsX3tD5ngdN8pkih} - AUTHENTICATION_APIKEY_USERS: ${WEAVIATE_AUTHENTICATION_APIKEY_USERS:-hello@dify.ai} - AUTHORIZATION_ADMINLIST_ENABLED: ${WEAVIATE_AUTHORIZATION_ADMINLIST_ENABLED:-true} - AUTHORIZATION_ADMINLIST_USERS: ${WEAVIATE_AUTHORIZATION_ADMINLIST_USERS:-hello@dify.ai} - - # Qdrant vector store. - # (if used, you need to set VECTOR_STORE to qdrant in the api & worker service.) - qdrant: - image: langgenius/qdrant:v1.7.3 - profiles: - - qdrant - restart: always - volumes: - - ./volumes/qdrant:/qdrant/storage - environment: - QDRANT_API_KEY: ${QDRANT_API_KEY:-difyai123456} - - # The Couchbase vector store. - couchbase-server: - build: ./couchbase-server - profiles: - - couchbase - restart: always - environment: - - CLUSTER_NAME=dify_search - - COUCHBASE_ADMINISTRATOR_USERNAME=${COUCHBASE_USER:-Administrator} - - COUCHBASE_ADMINISTRATOR_PASSWORD=${COUCHBASE_PASSWORD:-password} - - COUCHBASE_BUCKET=${COUCHBASE_BUCKET_NAME:-Embeddings} - - COUCHBASE_BUCKET_RAMSIZE=512 - - COUCHBASE_RAM_SIZE=2048 - - COUCHBASE_EVENTING_RAM_SIZE=512 - - COUCHBASE_INDEX_RAM_SIZE=512 - - COUCHBASE_FTS_RAM_SIZE=1024 - hostname: couchbase-server - container_name: couchbase-server - working_dir: /opt/couchbase - stdin_open: true - tty: true - entrypoint: [ "" ] - command: sh -c "/opt/couchbase/init/init-cbserver.sh" - volumes: - - ./volumes/couchbase/data:/opt/couchbase/var/lib/couchbase/data - healthcheck: - # ensure bucket was created before proceeding - test: [ "CMD-SHELL", "curl -s -f -u Administrator:password http://localhost:8091/pools/default/buckets | grep -q '\\[{' || exit 1" ] - interval: 10s - retries: 10 - start_period: 30s - timeout: 10s - - # The pgvector vector database. - pgvector: - image: pgvector/pgvector:pg16 - profiles: - - pgvector - restart: always - environment: - PGUSER: ${PGVECTOR_PGUSER:-postgres} - # The password for the default postgres user. - POSTGRES_PASSWORD: ${PGVECTOR_POSTGRES_PASSWORD:-difyai123456} - # The name of the default postgres database. - POSTGRES_DB: ${PGVECTOR_POSTGRES_DB:-dify} - # postgres data directory - PGDATA: ${PGVECTOR_PGDATA:-/var/lib/postgresql/data/pgdata} - volumes: - - ./volumes/pgvector/data:/var/lib/postgresql/data - healthcheck: - test: [ 'CMD', 'pg_isready' ] - interval: 1s - timeout: 3s - retries: 30 - - # pgvecto-rs vector store - pgvecto-rs: - image: tensorchord/pgvecto-rs:pg16-v0.3.0 - profiles: - - pgvecto-rs - restart: always - environment: - PGUSER: ${PGVECTOR_PGUSER:-postgres} - # The password for the default postgres user. - POSTGRES_PASSWORD: ${PGVECTOR_POSTGRES_PASSWORD:-difyai123456} - # The name of the default postgres database. - POSTGRES_DB: ${PGVECTOR_POSTGRES_DB:-dify} - # postgres data directory - PGDATA: ${PGVECTOR_PGDATA:-/var/lib/postgresql/data/pgdata} - volumes: - - ./volumes/pgvecto_rs/data:/var/lib/postgresql/data - healthcheck: - test: [ 'CMD', 'pg_isready' ] - interval: 1s - timeout: 3s - retries: 30 - - # Chroma vector database - chroma: - image: ghcr.io/chroma-core/chroma:0.5.20 - profiles: - - chroma - restart: always - volumes: - - ./volumes/chroma:/chroma/chroma - environment: - CHROMA_SERVER_AUTHN_CREDENTIALS: ${CHROMA_SERVER_AUTHN_CREDENTIALS:-difyai123456} - CHROMA_SERVER_AUTHN_PROVIDER: ${CHROMA_SERVER_AUTHN_PROVIDER:-chromadb.auth.token_authn.TokenAuthenticationServerProvider} - IS_PERSISTENT: ${CHROMA_IS_PERSISTENT:-TRUE} - - # OceanBase vector database - oceanbase: - image: quay.io/oceanbase/oceanbase-ce:4.3.3.0-100000142024101215 - profiles: - - oceanbase - restart: always - volumes: - - ./volumes/oceanbase/data:/root/ob - - ./volumes/oceanbase/conf:/root/.obd/cluster - - ./volumes/oceanbase/init.d:/root/boot/init.d - environment: - OB_MEMORY_LIMIT: ${OCEANBASE_MEMORY_LIMIT:-6G} - OB_SYS_PASSWORD: ${OCEANBASE_VECTOR_PASSWORD:-difyai123456} - OB_TENANT_PASSWORD: ${OCEANBASE_VECTOR_PASSWORD:-difyai123456} - OB_CLUSTER_NAME: ${OCEANBASE_CLUSTER_NAME:-difyai} - OB_SERVER_IP: '127.0.0.1' - - # Oracle vector database - oracle: - image: container-registry.oracle.com/database/free:latest - profiles: - - oracle - restart: always - volumes: - - source: oradata - type: volume - target: /opt/oracle/oradata - - ./startupscripts:/opt/oracle/scripts/startup - environment: - ORACLE_PWD: ${ORACLE_PWD:-Dify123456} - ORACLE_CHARACTERSET: ${ORACLE_CHARACTERSET:-AL32UTF8} - - # Milvus vector database services - etcd: - container_name: milvus-etcd - image: quay.io/coreos/etcd:v3.5.5 - profiles: - - milvus - environment: - ETCD_AUTO_COMPACTION_MODE: ${ETCD_AUTO_COMPACTION_MODE:-revision} - ETCD_AUTO_COMPACTION_RETENTION: ${ETCD_AUTO_COMPACTION_RETENTION:-1000} - ETCD_QUOTA_BACKEND_BYTES: ${ETCD_QUOTA_BACKEND_BYTES:-4294967296} - ETCD_SNAPSHOT_COUNT: ${ETCD_SNAPSHOT_COUNT:-50000} - volumes: - - ./volumes/milvus/etcd:/etcd - command: etcd -advertise-client-urls=http://127.0.0.1:2379 -listen-client-urls http://0.0.0.0:2379 --data-dir /etcd - healthcheck: - test: [ 'CMD', 'etcdctl', 'endpoint', 'health' ] - interval: 30s - timeout: 20s - retries: 3 - networks: - - milvus - - minio: - container_name: milvus-minio - image: minio/minio:RELEASE.2023-03-20T20-16-18Z - profiles: - - milvus - environment: - MINIO_ACCESS_KEY: ${MINIO_ACCESS_KEY:-minioadmin} - MINIO_SECRET_KEY: ${MINIO_SECRET_KEY:-minioadmin} - volumes: - - ./volumes/milvus/minio:/minio_data - command: minio server /minio_data --console-address ":9001" - healthcheck: - test: [ 'CMD', 'curl', '-f', 'http://localhost:9000/minio/health/live' ] - interval: 30s - timeout: 20s - retries: 3 - networks: - - milvus - - milvus-standalone: - container_name: milvus-standalone - image: milvusdb/milvus:v2.5.0-beta - profiles: - - milvus - command: [ 'milvus', 'run', 'standalone' ] - environment: - ETCD_ENDPOINTS: ${ETCD_ENDPOINTS:-etcd:2379} - MINIO_ADDRESS: ${MINIO_ADDRESS:-minio:9000} - common.security.authorizationEnabled: ${MILVUS_AUTHORIZATION_ENABLED:-true} - volumes: - - ./volumes/milvus/milvus:/var/lib/milvus - healthcheck: - test: [ 'CMD', 'curl', '-f', 'http://localhost:9091/healthz' ] - interval: 30s - start_period: 90s - timeout: 20s - retries: 3 - depends_on: - - etcd - - minio - ports: - - 19530:19530 - - 9091:9091 - networks: - - milvus - - # Opensearch vector database - opensearch: - container_name: opensearch - image: opensearchproject/opensearch:latest - profiles: - - opensearch - environment: - discovery.type: ${OPENSEARCH_DISCOVERY_TYPE:-single-node} - bootstrap.memory_lock: ${OPENSEARCH_BOOTSTRAP_MEMORY_LOCK:-true} - OPENSEARCH_JAVA_OPTS: -Xms${OPENSEARCH_JAVA_OPTS_MIN:-512m} -Xmx${OPENSEARCH_JAVA_OPTS_MAX:-1024m} - OPENSEARCH_INITIAL_ADMIN_PASSWORD: ${OPENSEARCH_INITIAL_ADMIN_PASSWORD:-Qazwsxedc!@#123} - ulimits: - memlock: - soft: ${OPENSEARCH_MEMLOCK_SOFT:--1} - hard: ${OPENSEARCH_MEMLOCK_HARD:--1} - nofile: - soft: ${OPENSEARCH_NOFILE_SOFT:-65536} - hard: ${OPENSEARCH_NOFILE_HARD:-65536} - volumes: - - ./volumes/opensearch/data:/usr/share/opensearch/data - networks: - - opensearch-net - - opensearch-dashboards: - container_name: opensearch-dashboards - image: opensearchproject/opensearch-dashboards:latest - profiles: - - opensearch - environment: - OPENSEARCH_HOSTS: '["https://opensearch:9200"]' - volumes: - - ./volumes/opensearch/opensearch_dashboards.yml:/usr/share/opensearch-dashboards/config/opensearch_dashboards.yml - networks: - - opensearch-net - depends_on: - - opensearch - - # MyScale vector database - myscale: - container_name: myscale - image: myscale/myscaledb:1.6.4 - profiles: - - myscale - restart: always - tty: true - volumes: - - ./volumes/myscale/data:/var/lib/clickhouse - - ./volumes/myscale/log:/var/log/clickhouse-server - - ./volumes/myscale/config/users.d/custom_users_config.xml:/etc/clickhouse-server/users.d/custom_users_config.xml - ports: - - ${MYSCALE_PORT:-8123}:${MYSCALE_PORT:-8123} - - # https://www.elastic.co/guide/en/elasticsearch/reference/current/settings.html - # https://www.elastic.co/guide/en/elasticsearch/reference/current/docker.html#docker-prod-prerequisites - elasticsearch: - image: docker.elastic.co/elasticsearch/elasticsearch:8.14.3 - container_name: elasticsearch - profiles: - - elasticsearch - - elasticsearch-ja - restart: always - volumes: - - ./elasticsearch/docker-entrypoint.sh:/docker-entrypoint-mount.sh - - dify_es01_data:/usr/share/elasticsearch/data - environment: - ELASTIC_PASSWORD: ${ELASTICSEARCH_PASSWORD:-elastic} - VECTOR_STORE: ${VECTOR_STORE:-} - cluster.name: dify-es-cluster - node.name: dify-es0 - discovery.type: single-node - xpack.license.self_generated.type: basic - xpack.security.enabled: 'true' - xpack.security.enrollment.enabled: 'false' - xpack.security.http.ssl.enabled: 'false' - ports: - - ${ELASTICSEARCH_PORT:-9200}:9200 - deploy: - resources: - limits: - memory: 2g - entrypoint: [ 'sh', '-c', "sh /docker-entrypoint-mount.sh" ] - healthcheck: - test: [ 'CMD', 'curl', '-s', 'http://localhost:9200/_cluster/health?pretty' ] - interval: 30s - timeout: 10s - retries: 50 - - # https://www.elastic.co/guide/en/kibana/current/docker.html - # https://www.elastic.co/guide/en/kibana/current/settings.html - kibana: - image: docker.elastic.co/kibana/kibana:8.14.3 - container_name: kibana - profiles: - - elasticsearch - depends_on: - - elasticsearch - restart: always - environment: - XPACK_ENCRYPTEDSAVEDOBJECTS_ENCRYPTIONKEY: d1a66dfd-c4d3-4a0a-8290-2abcb83ab3aa - NO_PROXY: localhost,127.0.0.1,elasticsearch,kibana - XPACK_SECURITY_ENABLED: 'true' - XPACK_SECURITY_ENROLLMENT_ENABLED: 'false' - XPACK_SECURITY_HTTP_SSL_ENABLED: 'false' - XPACK_FLEET_ISAIRGAPPED: 'true' - I18N_LOCALE: zh-CN - SERVER_PORT: '5601' - ELASTICSEARCH_HOSTS: http://elasticsearch:9200 - ports: - - ${KIBANA_PORT:-5601}:5601 - healthcheck: - test: [ 'CMD-SHELL', 'curl -s http://localhost:5601 >/dev/null || exit 1' ] - interval: 30s - timeout: 10s - retries: 3 - - # unstructured . - # (if used, you need to set ETL_TYPE to Unstructured in the api & worker service.) - unstructured: - image: downloads.unstructured.io/unstructured-io/unstructured-api:latest - profiles: - - unstructured - restart: always - volumes: - - ./volumes/unstructured:/app/data - -networks: - # create a network between sandbox, api and ssrf_proxy, and can not access outside. - ssrf_proxy_network: - driver: bridge - internal: true - milvus: - driver: bridge - opensearch-net: - driver: bridge - internal: true - -volumes: - oradata: - dify_es01_data: diff --git a/pre/docker/docker-compose.middleware.yaml b/pre/docker/docker-compose.middleware.yaml deleted file mode 100644 index 11f5302..0000000 --- a/pre/docker/docker-compose.middleware.yaml +++ /dev/null @@ -1,123 +0,0 @@ -services: - # The postgres database. - db: - image: postgres:15-alpine - restart: always - env_file: - - ./middleware.env - environment: - POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-difyai123456} - POSTGRES_DB: ${POSTGRES_DB:-dify} - PGDATA: ${PGDATA:-/var/lib/postgresql/data/pgdata} - command: > - postgres -c 'max_connections=${POSTGRES_MAX_CONNECTIONS:-100}' - -c 'shared_buffers=${POSTGRES_SHARED_BUFFERS:-128MB}' - -c 'work_mem=${POSTGRES_WORK_MEM:-4MB}' - -c 'maintenance_work_mem=${POSTGRES_MAINTENANCE_WORK_MEM:-64MB}' - -c 'effective_cache_size=${POSTGRES_EFFECTIVE_CACHE_SIZE:-4096MB}' - volumes: - - ${PGDATA_HOST_VOLUME:-./volumes/db/data}:/var/lib/postgresql/data - ports: - - "${EXPOSE_POSTGRES_PORT:-5432}:5432" - healthcheck: - test: [ "CMD", "pg_isready" ] - interval: 1s - timeout: 3s - retries: 30 - - # The redis cache. - redis: - image: redis:6-alpine - restart: always - environment: - REDISCLI_AUTH: ${REDIS_PASSWORD:-difyai123456} - volumes: - # Mount the redis data directory to the container. - - ${REDIS_HOST_VOLUME:-./volumes/redis/data}:/data - # Set the redis password when startup redis server. - command: redis-server --requirepass ${REDIS_PASSWORD:-difyai123456} - ports: - - "${EXPOSE_REDIS_PORT:-6379}:6379" - healthcheck: - test: [ "CMD", "redis-cli", "ping" ] - - # The DifySandbox - sandbox: - image: langgenius/dify-sandbox:0.2.10 - restart: always - environment: - # The DifySandbox configurations - # Make sure you are changing this key for your deployment with a strong key. - # You can generate a strong key using `openssl rand -base64 42`. - API_KEY: ${SANDBOX_API_KEY:-dify-sandbox} - GIN_MODE: ${SANDBOX_GIN_MODE:-release} - WORKER_TIMEOUT: ${SANDBOX_WORKER_TIMEOUT:-15} - ENABLE_NETWORK: ${SANDBOX_ENABLE_NETWORK:-true} - HTTP_PROXY: ${SANDBOX_HTTP_PROXY:-http://ssrf_proxy:3128} - HTTPS_PROXY: ${SANDBOX_HTTPS_PROXY:-http://ssrf_proxy:3128} - SANDBOX_PORT: ${SANDBOX_PORT:-8194} - volumes: - - ./volumes/sandbox/dependencies:/dependencies - - ./volumes/sandbox/conf:/conf - healthcheck: - test: [ "CMD", "curl", "-f", "http://localhost:8194/health" ] - networks: - - ssrf_proxy_network - - # ssrf_proxy server - # for more information, please refer to - # https://docs.dify.ai/learn-more/faq/install-faq#id-18.-why-is-ssrf_proxy-needed - ssrf_proxy: - image: ubuntu/squid:latest - restart: always - volumes: - - ./ssrf_proxy/squid.conf.template:/etc/squid/squid.conf.template - - ./ssrf_proxy/docker-entrypoint.sh:/docker-entrypoint-mount.sh - entrypoint: [ "sh", "-c", "cp /docker-entrypoint-mount.sh /docker-entrypoint.sh && sed -i 's/\r$$//' /docker-entrypoint.sh && chmod +x /docker-entrypoint.sh && /docker-entrypoint.sh" ] - environment: - # pls clearly modify the squid env vars to fit your network environment. - HTTP_PORT: ${SSRF_HTTP_PORT:-3128} - COREDUMP_DIR: ${SSRF_COREDUMP_DIR:-/var/spool/squid} - REVERSE_PROXY_PORT: ${SSRF_REVERSE_PROXY_PORT:-8194} - SANDBOX_HOST: ${SSRF_SANDBOX_HOST:-sandbox} - SANDBOX_PORT: ${SANDBOX_PORT:-8194} - ports: - - "${EXPOSE_SSRF_PROXY_PORT:-3128}:${SSRF_HTTP_PORT:-3128}" - - "${EXPOSE_SANDBOX_PORT:-8194}:${SANDBOX_PORT:-8194}" - networks: - - ssrf_proxy_network - - default - - # The Weaviate vector store. - weaviate: - image: semitechnologies/weaviate:1.19.0 - profiles: - - "" - - weaviate - restart: always - volumes: - # Mount the Weaviate data directory to the container. - - ${WEAVIATE_HOST_VOLUME:-./volumes/weaviate}:/var/lib/weaviate - env_file: - - ./middleware.env - environment: - # The Weaviate configurations - # You can refer to the [Weaviate](https://weaviate.io/developers/weaviate/config-refs/env-vars) documentation for more information. - PERSISTENCE_DATA_PATH: ${WEAVIATE_PERSISTENCE_DATA_PATH:-/var/lib/weaviate} - QUERY_DEFAULTS_LIMIT: ${WEAVIATE_QUERY_DEFAULTS_LIMIT:-25} - AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED: ${WEAVIATE_AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED:-false} - DEFAULT_VECTORIZER_MODULE: ${WEAVIATE_DEFAULT_VECTORIZER_MODULE:-none} - CLUSTER_HOSTNAME: ${WEAVIATE_CLUSTER_HOSTNAME:-node1} - AUTHENTICATION_APIKEY_ENABLED: ${WEAVIATE_AUTHENTICATION_APIKEY_ENABLED:-true} - AUTHENTICATION_APIKEY_ALLOWED_KEYS: ${WEAVIATE_AUTHENTICATION_APIKEY_ALLOWED_KEYS:-WVF5YThaHlkYwhGUSmCRgsX3tD5ngdN8pkih} - AUTHENTICATION_APIKEY_USERS: ${WEAVIATE_AUTHENTICATION_APIKEY_USERS:-hello@dify.ai} - AUTHORIZATION_ADMINLIST_ENABLED: ${WEAVIATE_AUTHORIZATION_ADMINLIST_ENABLED:-true} - AUTHORIZATION_ADMINLIST_USERS: ${WEAVIATE_AUTHORIZATION_ADMINLIST_USERS:-hello@dify.ai} - ports: - - "${EXPOSE_WEAVIATE_PORT:-8080}:8080" - -networks: - # create a network between sandbox, api and ssrf_proxy, and can not access outside. - ssrf_proxy_network: - driver: bridge - internal: true diff --git a/pre/docker/docker-compose.png b/pre/docker/docker-compose.png deleted file mode 100644 index bdac113..0000000 Binary files a/pre/docker/docker-compose.png and /dev/null differ diff --git a/pre/docker/docker-compose.yaml b/pre/docker/docker-compose.yaml deleted file mode 100644 index 6c50878..0000000 --- a/pre/docker/docker-compose.yaml +++ /dev/null @@ -1,973 +0,0 @@ -# ================================================================== -# WARNING: This file is auto-generated by generate_docker_compose -# Do not modify this file directly. Instead, update the .env.example -# or docker-compose-template.yaml and regenerate this file. -# ================================================================== - -x-shared-env: &shared-api-worker-env - CONSOLE_API_URL: ${CONSOLE_API_URL:-} - CONSOLE_WEB_URL: ${CONSOLE_WEB_URL:-} - SERVICE_API_URL: ${SERVICE_API_URL:-} - APP_API_URL: ${APP_API_URL:-} - APP_WEB_URL: ${APP_WEB_URL:-} - FILES_URL: ${FILES_URL:-} - LOG_LEVEL: ${LOG_LEVEL:-INFO} - LOG_FILE: ${LOG_FILE:-/app/logs/server.log} - LOG_FILE_MAX_SIZE: ${LOG_FILE_MAX_SIZE:-20} - LOG_FILE_BACKUP_COUNT: ${LOG_FILE_BACKUP_COUNT:-5} - LOG_DATEFORMAT: ${LOG_DATEFORMAT:-%Y-%m-%d %H:%M:%S} - LOG_TZ: ${LOG_TZ:-UTC} - DEBUG: ${DEBUG:-false} - FLASK_DEBUG: ${FLASK_DEBUG:-false} - SECRET_KEY: ${SECRET_KEY:-sk-9f73s3ljTXVcMT3Blb3ljTqtsKiGHXVcMT3BlbkFJLK7U} - INIT_PASSWORD: ${INIT_PASSWORD:-} - DEPLOY_ENV: ${DEPLOY_ENV:-PRODUCTION} - CHECK_UPDATE_URL: ${CHECK_UPDATE_URL:-https://updates.dify.ai} - OPENAI_API_BASE: ${OPENAI_API_BASE:-https://api.openai.com/v1} - MIGRATION_ENABLED: ${MIGRATION_ENABLED:-true} - FILES_ACCESS_TIMEOUT: ${FILES_ACCESS_TIMEOUT:-300} - ACCESS_TOKEN_EXPIRE_MINUTES: ${ACCESS_TOKEN_EXPIRE_MINUTES:-60} - REFRESH_TOKEN_EXPIRE_DAYS: ${REFRESH_TOKEN_EXPIRE_DAYS:-30} - APP_MAX_ACTIVE_REQUESTS: ${APP_MAX_ACTIVE_REQUESTS:-0} - APP_MAX_EXECUTION_TIME: ${APP_MAX_EXECUTION_TIME:-1200} - DIFY_BIND_ADDRESS: ${DIFY_BIND_ADDRESS:-0.0.0.0} - DIFY_PORT: ${DIFY_PORT:-5001} - SERVER_WORKER_AMOUNT: ${SERVER_WORKER_AMOUNT:-1} - SERVER_WORKER_CLASS: ${SERVER_WORKER_CLASS:-gevent} - SERVER_WORKER_CONNECTIONS: ${SERVER_WORKER_CONNECTIONS:-10} - CELERY_WORKER_CLASS: ${CELERY_WORKER_CLASS:-} - GUNICORN_TIMEOUT: ${GUNICORN_TIMEOUT:-360} - CELERY_WORKER_AMOUNT: ${CELERY_WORKER_AMOUNT:-} - CELERY_AUTO_SCALE: ${CELERY_AUTO_SCALE:-false} - CELERY_MAX_WORKERS: ${CELERY_MAX_WORKERS:-} - CELERY_MIN_WORKERS: ${CELERY_MIN_WORKERS:-} - API_TOOL_DEFAULT_CONNECT_TIMEOUT: ${API_TOOL_DEFAULT_CONNECT_TIMEOUT:-10} - API_TOOL_DEFAULT_READ_TIMEOUT: ${API_TOOL_DEFAULT_READ_TIMEOUT:-60} - DB_USERNAME: ${DB_USERNAME:-postgres} - DB_PASSWORD: ${DB_PASSWORD:-difyai123456} - DB_HOST: ${DB_HOST:-db} - DB_PORT: ${DB_PORT:-5432} - DB_DATABASE: ${DB_DATABASE:-dify} - SQLALCHEMY_POOL_SIZE: ${SQLALCHEMY_POOL_SIZE:-30} - SQLALCHEMY_POOL_RECYCLE: ${SQLALCHEMY_POOL_RECYCLE:-3600} - SQLALCHEMY_ECHO: ${SQLALCHEMY_ECHO:-false} - POSTGRES_MAX_CONNECTIONS: ${POSTGRES_MAX_CONNECTIONS:-100} - POSTGRES_SHARED_BUFFERS: ${POSTGRES_SHARED_BUFFERS:-128MB} - POSTGRES_WORK_MEM: ${POSTGRES_WORK_MEM:-4MB} - POSTGRES_MAINTENANCE_WORK_MEM: ${POSTGRES_MAINTENANCE_WORK_MEM:-64MB} - POSTGRES_EFFECTIVE_CACHE_SIZE: ${POSTGRES_EFFECTIVE_CACHE_SIZE:-4096MB} - REDIS_HOST: ${REDIS_HOST:-redis} - REDIS_PORT: ${REDIS_PORT:-6379} - REDIS_USERNAME: ${REDIS_USERNAME:-} - REDIS_PASSWORD: ${REDIS_PASSWORD:-difyai123456} - REDIS_USE_SSL: ${REDIS_USE_SSL:-false} - REDIS_DB: ${REDIS_DB:-0} - REDIS_USE_SENTINEL: ${REDIS_USE_SENTINEL:-false} - REDIS_SENTINELS: ${REDIS_SENTINELS:-} - REDIS_SENTINEL_SERVICE_NAME: ${REDIS_SENTINEL_SERVICE_NAME:-} - REDIS_SENTINEL_USERNAME: ${REDIS_SENTINEL_USERNAME:-} - REDIS_SENTINEL_PASSWORD: ${REDIS_SENTINEL_PASSWORD:-} - REDIS_SENTINEL_SOCKET_TIMEOUT: ${REDIS_SENTINEL_SOCKET_TIMEOUT:-0.1} - REDIS_USE_CLUSTERS: ${REDIS_USE_CLUSTERS:-false} - REDIS_CLUSTERS: ${REDIS_CLUSTERS:-} - REDIS_CLUSTERS_PASSWORD: ${REDIS_CLUSTERS_PASSWORD:-} - CELERY_BROKER_URL: ${CELERY_BROKER_URL:-redis://:difyai123456@redis:6379/1} - BROKER_USE_SSL: ${BROKER_USE_SSL:-false} - CELERY_USE_SENTINEL: ${CELERY_USE_SENTINEL:-false} - CELERY_SENTINEL_MASTER_NAME: ${CELERY_SENTINEL_MASTER_NAME:-} - CELERY_SENTINEL_SOCKET_TIMEOUT: ${CELERY_SENTINEL_SOCKET_TIMEOUT:-0.1} - WEB_API_CORS_ALLOW_ORIGINS: ${WEB_API_CORS_ALLOW_ORIGINS:-*} - CONSOLE_CORS_ALLOW_ORIGINS: ${CONSOLE_CORS_ALLOW_ORIGINS:-*} - STORAGE_TYPE: ${STORAGE_TYPE:-opendal} - OPENDAL_SCHEME: ${OPENDAL_SCHEME:-fs} - OPENDAL_FS_ROOT: ${OPENDAL_FS_ROOT:-storage} - S3_ENDPOINT: ${S3_ENDPOINT:-} - S3_REGION: ${S3_REGION:-us-east-1} - S3_BUCKET_NAME: ${S3_BUCKET_NAME:-difyai} - S3_ACCESS_KEY: ${S3_ACCESS_KEY:-} - S3_SECRET_KEY: ${S3_SECRET_KEY:-} - S3_USE_AWS_MANAGED_IAM: ${S3_USE_AWS_MANAGED_IAM:-false} - AZURE_BLOB_ACCOUNT_NAME: ${AZURE_BLOB_ACCOUNT_NAME:-difyai} - AZURE_BLOB_ACCOUNT_KEY: ${AZURE_BLOB_ACCOUNT_KEY:-difyai} - AZURE_BLOB_CONTAINER_NAME: ${AZURE_BLOB_CONTAINER_NAME:-difyai-container} - AZURE_BLOB_ACCOUNT_URL: ${AZURE_BLOB_ACCOUNT_URL:-https://.blob.core.windows.net} - GOOGLE_STORAGE_BUCKET_NAME: ${GOOGLE_STORAGE_BUCKET_NAME:-your-bucket-name} - GOOGLE_STORAGE_SERVICE_ACCOUNT_JSON_BASE64: ${GOOGLE_STORAGE_SERVICE_ACCOUNT_JSON_BASE64:-} - ALIYUN_OSS_BUCKET_NAME: ${ALIYUN_OSS_BUCKET_NAME:-your-bucket-name} - ALIYUN_OSS_ACCESS_KEY: ${ALIYUN_OSS_ACCESS_KEY:-your-access-key} - ALIYUN_OSS_SECRET_KEY: ${ALIYUN_OSS_SECRET_KEY:-your-secret-key} - ALIYUN_OSS_ENDPOINT: ${ALIYUN_OSS_ENDPOINT:-https://oss-ap-southeast-1-internal.aliyuncs.com} - ALIYUN_OSS_REGION: ${ALIYUN_OSS_REGION:-ap-southeast-1} - ALIYUN_OSS_AUTH_VERSION: ${ALIYUN_OSS_AUTH_VERSION:-v4} - ALIYUN_OSS_PATH: ${ALIYUN_OSS_PATH:-your-path} - TENCENT_COS_BUCKET_NAME: ${TENCENT_COS_BUCKET_NAME:-your-bucket-name} - TENCENT_COS_SECRET_KEY: ${TENCENT_COS_SECRET_KEY:-your-secret-key} - TENCENT_COS_SECRET_ID: ${TENCENT_COS_SECRET_ID:-your-secret-id} - TENCENT_COS_REGION: ${TENCENT_COS_REGION:-your-region} - TENCENT_COS_SCHEME: ${TENCENT_COS_SCHEME:-your-scheme} - OCI_ENDPOINT: ${OCI_ENDPOINT:-https://objectstorage.us-ashburn-1.oraclecloud.com} - OCI_BUCKET_NAME: ${OCI_BUCKET_NAME:-your-bucket-name} - OCI_ACCESS_KEY: ${OCI_ACCESS_KEY:-your-access-key} - OCI_SECRET_KEY: ${OCI_SECRET_KEY:-your-secret-key} - OCI_REGION: ${OCI_REGION:-us-ashburn-1} - HUAWEI_OBS_BUCKET_NAME: ${HUAWEI_OBS_BUCKET_NAME:-your-bucket-name} - HUAWEI_OBS_SECRET_KEY: ${HUAWEI_OBS_SECRET_KEY:-your-secret-key} - HUAWEI_OBS_ACCESS_KEY: ${HUAWEI_OBS_ACCESS_KEY:-your-access-key} - HUAWEI_OBS_SERVER: ${HUAWEI_OBS_SERVER:-your-server-url} - VOLCENGINE_TOS_BUCKET_NAME: ${VOLCENGINE_TOS_BUCKET_NAME:-your-bucket-name} - VOLCENGINE_TOS_SECRET_KEY: ${VOLCENGINE_TOS_SECRET_KEY:-your-secret-key} - VOLCENGINE_TOS_ACCESS_KEY: ${VOLCENGINE_TOS_ACCESS_KEY:-your-access-key} - VOLCENGINE_TOS_ENDPOINT: ${VOLCENGINE_TOS_ENDPOINT:-your-server-url} - VOLCENGINE_TOS_REGION: ${VOLCENGINE_TOS_REGION:-your-region} - BAIDU_OBS_BUCKET_NAME: ${BAIDU_OBS_BUCKET_NAME:-your-bucket-name} - BAIDU_OBS_SECRET_KEY: ${BAIDU_OBS_SECRET_KEY:-your-secret-key} - BAIDU_OBS_ACCESS_KEY: ${BAIDU_OBS_ACCESS_KEY:-your-access-key} - BAIDU_OBS_ENDPOINT: ${BAIDU_OBS_ENDPOINT:-your-server-url} - SUPABASE_BUCKET_NAME: ${SUPABASE_BUCKET_NAME:-your-bucket-name} - SUPABASE_API_KEY: ${SUPABASE_API_KEY:-your-access-key} - SUPABASE_URL: ${SUPABASE_URL:-your-server-url} - VECTOR_STORE: ${VECTOR_STORE:-weaviate} - WEAVIATE_ENDPOINT: ${WEAVIATE_ENDPOINT:-http://weaviate:8080} - WEAVIATE_API_KEY: ${WEAVIATE_API_KEY:-WVF5YThaHlkYwhGUSmCRgsX3tD5ngdN8pkih} - QDRANT_URL: ${QDRANT_URL:-http://qdrant:6333} - QDRANT_API_KEY: ${QDRANT_API_KEY:-difyai123456} - QDRANT_CLIENT_TIMEOUT: ${QDRANT_CLIENT_TIMEOUT:-20} - QDRANT_GRPC_ENABLED: ${QDRANT_GRPC_ENABLED:-false} - QDRANT_GRPC_PORT: ${QDRANT_GRPC_PORT:-6334} - MILVUS_URI: ${MILVUS_URI:-http://127.0.0.1:19530} - MILVUS_TOKEN: ${MILVUS_TOKEN:-} - MILVUS_USER: ${MILVUS_USER:-root} - MILVUS_PASSWORD: ${MILVUS_PASSWORD:-Milvus} - MILVUS_ENABLE_HYBRID_SEARCH: ${MILVUS_ENABLE_HYBRID_SEARCH:-False} - MYSCALE_HOST: ${MYSCALE_HOST:-myscale} - MYSCALE_PORT: ${MYSCALE_PORT:-8123} - MYSCALE_USER: ${MYSCALE_USER:-default} - MYSCALE_PASSWORD: ${MYSCALE_PASSWORD:-} - MYSCALE_DATABASE: ${MYSCALE_DATABASE:-dify} - MYSCALE_FTS_PARAMS: ${MYSCALE_FTS_PARAMS:-} - COUCHBASE_CONNECTION_STRING: ${COUCHBASE_CONNECTION_STRING:-couchbase://couchbase-server} - COUCHBASE_USER: ${COUCHBASE_USER:-Administrator} - COUCHBASE_PASSWORD: ${COUCHBASE_PASSWORD:-password} - COUCHBASE_BUCKET_NAME: ${COUCHBASE_BUCKET_NAME:-Embeddings} - COUCHBASE_SCOPE_NAME: ${COUCHBASE_SCOPE_NAME:-_default} - PGVECTOR_HOST: ${PGVECTOR_HOST:-pgvector} - PGVECTOR_PORT: ${PGVECTOR_PORT:-5432} - PGVECTOR_USER: ${PGVECTOR_USER:-postgres} - PGVECTOR_PASSWORD: ${PGVECTOR_PASSWORD:-difyai123456} - PGVECTOR_DATABASE: ${PGVECTOR_DATABASE:-dify} - PGVECTOR_MIN_CONNECTION: ${PGVECTOR_MIN_CONNECTION:-1} - PGVECTOR_MAX_CONNECTION: ${PGVECTOR_MAX_CONNECTION:-5} - PGVECTO_RS_HOST: ${PGVECTO_RS_HOST:-pgvecto-rs} - PGVECTO_RS_PORT: ${PGVECTO_RS_PORT:-5432} - PGVECTO_RS_USER: ${PGVECTO_RS_USER:-postgres} - PGVECTO_RS_PASSWORD: ${PGVECTO_RS_PASSWORD:-difyai123456} - PGVECTO_RS_DATABASE: ${PGVECTO_RS_DATABASE:-dify} - ANALYTICDB_KEY_ID: ${ANALYTICDB_KEY_ID:-your-ak} - ANALYTICDB_KEY_SECRET: ${ANALYTICDB_KEY_SECRET:-your-sk} - ANALYTICDB_REGION_ID: ${ANALYTICDB_REGION_ID:-cn-hangzhou} - ANALYTICDB_INSTANCE_ID: ${ANALYTICDB_INSTANCE_ID:-gp-ab123456} - ANALYTICDB_ACCOUNT: ${ANALYTICDB_ACCOUNT:-testaccount} - ANALYTICDB_PASSWORD: ${ANALYTICDB_PASSWORD:-testpassword} - ANALYTICDB_NAMESPACE: ${ANALYTICDB_NAMESPACE:-dify} - ANALYTICDB_NAMESPACE_PASSWORD: ${ANALYTICDB_NAMESPACE_PASSWORD:-difypassword} - ANALYTICDB_HOST: ${ANALYTICDB_HOST:-gp-test.aliyuncs.com} - ANALYTICDB_PORT: ${ANALYTICDB_PORT:-5432} - ANALYTICDB_MIN_CONNECTION: ${ANALYTICDB_MIN_CONNECTION:-1} - ANALYTICDB_MAX_CONNECTION: ${ANALYTICDB_MAX_CONNECTION:-5} - TIDB_VECTOR_HOST: ${TIDB_VECTOR_HOST:-tidb} - TIDB_VECTOR_PORT: ${TIDB_VECTOR_PORT:-4000} - TIDB_VECTOR_USER: ${TIDB_VECTOR_USER:-} - TIDB_VECTOR_PASSWORD: ${TIDB_VECTOR_PASSWORD:-} - TIDB_VECTOR_DATABASE: ${TIDB_VECTOR_DATABASE:-dify} - TIDB_ON_QDRANT_URL: ${TIDB_ON_QDRANT_URL:-http://127.0.0.1} - TIDB_ON_QDRANT_API_KEY: ${TIDB_ON_QDRANT_API_KEY:-dify} - TIDB_ON_QDRANT_CLIENT_TIMEOUT: ${TIDB_ON_QDRANT_CLIENT_TIMEOUT:-20} - TIDB_ON_QDRANT_GRPC_ENABLED: ${TIDB_ON_QDRANT_GRPC_ENABLED:-false} - TIDB_ON_QDRANT_GRPC_PORT: ${TIDB_ON_QDRANT_GRPC_PORT:-6334} - TIDB_PUBLIC_KEY: ${TIDB_PUBLIC_KEY:-dify} - TIDB_PRIVATE_KEY: ${TIDB_PRIVATE_KEY:-dify} - TIDB_API_URL: ${TIDB_API_URL:-http://127.0.0.1} - TIDB_IAM_API_URL: ${TIDB_IAM_API_URL:-http://127.0.0.1} - TIDB_REGION: ${TIDB_REGION:-regions/aws-us-east-1} - TIDB_PROJECT_ID: ${TIDB_PROJECT_ID:-dify} - TIDB_SPEND_LIMIT: ${TIDB_SPEND_LIMIT:-100} - CHROMA_HOST: ${CHROMA_HOST:-127.0.0.1} - CHROMA_PORT: ${CHROMA_PORT:-8000} - CHROMA_TENANT: ${CHROMA_TENANT:-default_tenant} - CHROMA_DATABASE: ${CHROMA_DATABASE:-default_database} - CHROMA_AUTH_PROVIDER: ${CHROMA_AUTH_PROVIDER:-chromadb.auth.token_authn.TokenAuthClientProvider} - CHROMA_AUTH_CREDENTIALS: ${CHROMA_AUTH_CREDENTIALS:-} - ORACLE_HOST: ${ORACLE_HOST:-oracle} - ORACLE_PORT: ${ORACLE_PORT:-1521} - ORACLE_USER: ${ORACLE_USER:-dify} - ORACLE_PASSWORD: ${ORACLE_PASSWORD:-dify} - ORACLE_DATABASE: ${ORACLE_DATABASE:-FREEPDB1} - RELYT_HOST: ${RELYT_HOST:-db} - RELYT_PORT: ${RELYT_PORT:-5432} - RELYT_USER: ${RELYT_USER:-postgres} - RELYT_PASSWORD: ${RELYT_PASSWORD:-difyai123456} - RELYT_DATABASE: ${RELYT_DATABASE:-postgres} - OPENSEARCH_HOST: ${OPENSEARCH_HOST:-opensearch} - OPENSEARCH_PORT: ${OPENSEARCH_PORT:-9200} - OPENSEARCH_USER: ${OPENSEARCH_USER:-admin} - OPENSEARCH_PASSWORD: ${OPENSEARCH_PASSWORD:-admin} - OPENSEARCH_SECURE: ${OPENSEARCH_SECURE:-true} - TENCENT_VECTOR_DB_URL: ${TENCENT_VECTOR_DB_URL:-http://127.0.0.1} - TENCENT_VECTOR_DB_API_KEY: ${TENCENT_VECTOR_DB_API_KEY:-dify} - TENCENT_VECTOR_DB_TIMEOUT: ${TENCENT_VECTOR_DB_TIMEOUT:-30} - TENCENT_VECTOR_DB_USERNAME: ${TENCENT_VECTOR_DB_USERNAME:-dify} - TENCENT_VECTOR_DB_DATABASE: ${TENCENT_VECTOR_DB_DATABASE:-dify} - TENCENT_VECTOR_DB_SHARD: ${TENCENT_VECTOR_DB_SHARD:-1} - TENCENT_VECTOR_DB_REPLICAS: ${TENCENT_VECTOR_DB_REPLICAS:-2} - ELASTICSEARCH_HOST: ${ELASTICSEARCH_HOST:-0.0.0.0} - ELASTICSEARCH_PORT: ${ELASTICSEARCH_PORT:-9200} - ELASTICSEARCH_USERNAME: ${ELASTICSEARCH_USERNAME:-elastic} - ELASTICSEARCH_PASSWORD: ${ELASTICSEARCH_PASSWORD:-elastic} - KIBANA_PORT: ${KIBANA_PORT:-5601} - BAIDU_VECTOR_DB_ENDPOINT: ${BAIDU_VECTOR_DB_ENDPOINT:-http://127.0.0.1:5287} - BAIDU_VECTOR_DB_CONNECTION_TIMEOUT_MS: ${BAIDU_VECTOR_DB_CONNECTION_TIMEOUT_MS:-30000} - BAIDU_VECTOR_DB_ACCOUNT: ${BAIDU_VECTOR_DB_ACCOUNT:-root} - BAIDU_VECTOR_DB_API_KEY: ${BAIDU_VECTOR_DB_API_KEY:-dify} - BAIDU_VECTOR_DB_DATABASE: ${BAIDU_VECTOR_DB_DATABASE:-dify} - BAIDU_VECTOR_DB_SHARD: ${BAIDU_VECTOR_DB_SHARD:-1} - BAIDU_VECTOR_DB_REPLICAS: ${BAIDU_VECTOR_DB_REPLICAS:-3} - VIKINGDB_ACCESS_KEY: ${VIKINGDB_ACCESS_KEY:-your-ak} - VIKINGDB_SECRET_KEY: ${VIKINGDB_SECRET_KEY:-your-sk} - VIKINGDB_REGION: ${VIKINGDB_REGION:-cn-shanghai} - VIKINGDB_HOST: ${VIKINGDB_HOST:-api-vikingdb.xxx.volces.com} - VIKINGDB_SCHEMA: ${VIKINGDB_SCHEMA:-http} - VIKINGDB_CONNECTION_TIMEOUT: ${VIKINGDB_CONNECTION_TIMEOUT:-30} - VIKINGDB_SOCKET_TIMEOUT: ${VIKINGDB_SOCKET_TIMEOUT:-30} - LINDORM_URL: ${LINDORM_URL:-http://lindorm:30070} - LINDORM_USERNAME: ${LINDORM_USERNAME:-lindorm} - LINDORM_PASSWORD: ${LINDORM_PASSWORD:-lindorm} - OCEANBASE_VECTOR_HOST: ${OCEANBASE_VECTOR_HOST:-oceanbase} - OCEANBASE_VECTOR_PORT: ${OCEANBASE_VECTOR_PORT:-2881} - OCEANBASE_VECTOR_USER: ${OCEANBASE_VECTOR_USER:-root@test} - OCEANBASE_VECTOR_PASSWORD: ${OCEANBASE_VECTOR_PASSWORD:-difyai123456} - OCEANBASE_VECTOR_DATABASE: ${OCEANBASE_VECTOR_DATABASE:-test} - OCEANBASE_CLUSTER_NAME: ${OCEANBASE_CLUSTER_NAME:-difyai} - OCEANBASE_MEMORY_LIMIT: ${OCEANBASE_MEMORY_LIMIT:-6G} - UPSTASH_VECTOR_URL: ${UPSTASH_VECTOR_URL:-https://xxx-vector.upstash.io} - UPSTASH_VECTOR_TOKEN: ${UPSTASH_VECTOR_TOKEN:-dify} - UPLOAD_FILE_SIZE_LIMIT: ${UPLOAD_FILE_SIZE_LIMIT:-15} - UPLOAD_FILE_BATCH_LIMIT: ${UPLOAD_FILE_BATCH_LIMIT:-5} - ETL_TYPE: ${ETL_TYPE:-dify} - UNSTRUCTURED_API_URL: ${UNSTRUCTURED_API_URL:-} - UNSTRUCTURED_API_KEY: ${UNSTRUCTURED_API_KEY:-} - SCARF_NO_ANALYTICS: ${SCARF_NO_ANALYTICS:-true} - PROMPT_GENERATION_MAX_TOKENS: ${PROMPT_GENERATION_MAX_TOKENS:-512} - CODE_GENERATION_MAX_TOKENS: ${CODE_GENERATION_MAX_TOKENS:-1024} - MULTIMODAL_SEND_FORMAT: ${MULTIMODAL_SEND_FORMAT:-base64} - UPLOAD_IMAGE_FILE_SIZE_LIMIT: ${UPLOAD_IMAGE_FILE_SIZE_LIMIT:-10} - UPLOAD_VIDEO_FILE_SIZE_LIMIT: ${UPLOAD_VIDEO_FILE_SIZE_LIMIT:-100} - UPLOAD_AUDIO_FILE_SIZE_LIMIT: ${UPLOAD_AUDIO_FILE_SIZE_LIMIT:-50} - SENTRY_DSN: ${SENTRY_DSN:-} - API_SENTRY_DSN: ${API_SENTRY_DSN:-} - API_SENTRY_TRACES_SAMPLE_RATE: ${API_SENTRY_TRACES_SAMPLE_RATE:-1.0} - API_SENTRY_PROFILES_SAMPLE_RATE: ${API_SENTRY_PROFILES_SAMPLE_RATE:-1.0} - WEB_SENTRY_DSN: ${WEB_SENTRY_DSN:-} - NOTION_INTEGRATION_TYPE: ${NOTION_INTEGRATION_TYPE:-public} - NOTION_CLIENT_SECRET: ${NOTION_CLIENT_SECRET:-} - NOTION_CLIENT_ID: ${NOTION_CLIENT_ID:-} - NOTION_INTERNAL_SECRET: ${NOTION_INTERNAL_SECRET:-} - MAIL_TYPE: ${MAIL_TYPE:-resend} - MAIL_DEFAULT_SEND_FROM: ${MAIL_DEFAULT_SEND_FROM:-} - RESEND_API_URL: ${RESEND_API_URL:-https://api.resend.com} - RESEND_API_KEY: ${RESEND_API_KEY:-your-resend-api-key} - SMTP_SERVER: ${SMTP_SERVER:-} - SMTP_PORT: ${SMTP_PORT:-465} - SMTP_USERNAME: ${SMTP_USERNAME:-} - SMTP_PASSWORD: ${SMTP_PASSWORD:-} - SMTP_USE_TLS: ${SMTP_USE_TLS:-true} - SMTP_OPPORTUNISTIC_TLS: ${SMTP_OPPORTUNISTIC_TLS:-false} - INDEXING_MAX_SEGMENTATION_TOKENS_LENGTH: ${INDEXING_MAX_SEGMENTATION_TOKENS_LENGTH:-4000} - INVITE_EXPIRY_HOURS: ${INVITE_EXPIRY_HOURS:-72} - RESET_PASSWORD_TOKEN_EXPIRY_MINUTES: ${RESET_PASSWORD_TOKEN_EXPIRY_MINUTES:-5} - CODE_EXECUTION_ENDPOINT: ${CODE_EXECUTION_ENDPOINT:-http://sandbox:8194} - CODE_EXECUTION_API_KEY: ${CODE_EXECUTION_API_KEY:-dify-sandbox} - CODE_MAX_NUMBER: ${CODE_MAX_NUMBER:-9223372036854775807} - CODE_MIN_NUMBER: ${CODE_MIN_NUMBER:--9223372036854775808} - CODE_MAX_DEPTH: ${CODE_MAX_DEPTH:-5} - CODE_MAX_PRECISION: ${CODE_MAX_PRECISION:-20} - CODE_MAX_STRING_LENGTH: ${CODE_MAX_STRING_LENGTH:-80000} - CODE_MAX_STRING_ARRAY_LENGTH: ${CODE_MAX_STRING_ARRAY_LENGTH:-30} - CODE_MAX_OBJECT_ARRAY_LENGTH: ${CODE_MAX_OBJECT_ARRAY_LENGTH:-30} - CODE_MAX_NUMBER_ARRAY_LENGTH: ${CODE_MAX_NUMBER_ARRAY_LENGTH:-1000} - CODE_EXECUTION_CONNECT_TIMEOUT: ${CODE_EXECUTION_CONNECT_TIMEOUT:-10} - CODE_EXECUTION_READ_TIMEOUT: ${CODE_EXECUTION_READ_TIMEOUT:-60} - CODE_EXECUTION_WRITE_TIMEOUT: ${CODE_EXECUTION_WRITE_TIMEOUT:-10} - TEMPLATE_TRANSFORM_MAX_LENGTH: ${TEMPLATE_TRANSFORM_MAX_LENGTH:-80000} - WORKFLOW_MAX_EXECUTION_STEPS: ${WORKFLOW_MAX_EXECUTION_STEPS:-500} - WORKFLOW_MAX_EXECUTION_TIME: ${WORKFLOW_MAX_EXECUTION_TIME:-1200} - WORKFLOW_CALL_MAX_DEPTH: ${WORKFLOW_CALL_MAX_DEPTH:-5} - MAX_VARIABLE_SIZE: ${MAX_VARIABLE_SIZE:-204800} - WORKFLOW_PARALLEL_DEPTH_LIMIT: ${WORKFLOW_PARALLEL_DEPTH_LIMIT:-3} - WORKFLOW_FILE_UPLOAD_LIMIT: ${WORKFLOW_FILE_UPLOAD_LIMIT:-10} - HTTP_REQUEST_NODE_MAX_BINARY_SIZE: ${HTTP_REQUEST_NODE_MAX_BINARY_SIZE:-10485760} - HTTP_REQUEST_NODE_MAX_TEXT_SIZE: ${HTTP_REQUEST_NODE_MAX_TEXT_SIZE:-1048576} - SSRF_PROXY_HTTP_URL: ${SSRF_PROXY_HTTP_URL:-http://ssrf_proxy:3128} - SSRF_PROXY_HTTPS_URL: ${SSRF_PROXY_HTTPS_URL:-http://ssrf_proxy:3128} - TEXT_GENERATION_TIMEOUT_MS: ${TEXT_GENERATION_TIMEOUT_MS:-60000} - PGUSER: ${PGUSER:-${DB_USERNAME}} - POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-${DB_PASSWORD}} - POSTGRES_DB: ${POSTGRES_DB:-${DB_DATABASE}} - PGDATA: ${PGDATA:-/var/lib/postgresql/data/pgdata} - SANDBOX_API_KEY: ${SANDBOX_API_KEY:-dify-sandbox} - SANDBOX_GIN_MODE: ${SANDBOX_GIN_MODE:-release} - SANDBOX_WORKER_TIMEOUT: ${SANDBOX_WORKER_TIMEOUT:-15} - SANDBOX_ENABLE_NETWORK: ${SANDBOX_ENABLE_NETWORK:-true} - SANDBOX_HTTP_PROXY: ${SANDBOX_HTTP_PROXY:-http://ssrf_proxy:3128} - SANDBOX_HTTPS_PROXY: ${SANDBOX_HTTPS_PROXY:-http://ssrf_proxy:3128} - SANDBOX_PORT: ${SANDBOX_PORT:-8194} - WEAVIATE_PERSISTENCE_DATA_PATH: ${WEAVIATE_PERSISTENCE_DATA_PATH:-/var/lib/weaviate} - WEAVIATE_QUERY_DEFAULTS_LIMIT: ${WEAVIATE_QUERY_DEFAULTS_LIMIT:-25} - WEAVIATE_AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED: ${WEAVIATE_AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED:-true} - WEAVIATE_DEFAULT_VECTORIZER_MODULE: ${WEAVIATE_DEFAULT_VECTORIZER_MODULE:-none} - WEAVIATE_CLUSTER_HOSTNAME: ${WEAVIATE_CLUSTER_HOSTNAME:-node1} - WEAVIATE_AUTHENTICATION_APIKEY_ENABLED: ${WEAVIATE_AUTHENTICATION_APIKEY_ENABLED:-true} - WEAVIATE_AUTHENTICATION_APIKEY_ALLOWED_KEYS: ${WEAVIATE_AUTHENTICATION_APIKEY_ALLOWED_KEYS:-WVF5YThaHlkYwhGUSmCRgsX3tD5ngdN8pkih} - WEAVIATE_AUTHENTICATION_APIKEY_USERS: ${WEAVIATE_AUTHENTICATION_APIKEY_USERS:-hello@dify.ai} - WEAVIATE_AUTHORIZATION_ADMINLIST_ENABLED: ${WEAVIATE_AUTHORIZATION_ADMINLIST_ENABLED:-true} - WEAVIATE_AUTHORIZATION_ADMINLIST_USERS: ${WEAVIATE_AUTHORIZATION_ADMINLIST_USERS:-hello@dify.ai} - CHROMA_SERVER_AUTHN_CREDENTIALS: ${CHROMA_SERVER_AUTHN_CREDENTIALS:-difyai123456} - CHROMA_SERVER_AUTHN_PROVIDER: ${CHROMA_SERVER_AUTHN_PROVIDER:-chromadb.auth.token_authn.TokenAuthenticationServerProvider} - CHROMA_IS_PERSISTENT: ${CHROMA_IS_PERSISTENT:-TRUE} - ORACLE_PWD: ${ORACLE_PWD:-Dify123456} - ORACLE_CHARACTERSET: ${ORACLE_CHARACTERSET:-AL32UTF8} - ETCD_AUTO_COMPACTION_MODE: ${ETCD_AUTO_COMPACTION_MODE:-revision} - ETCD_AUTO_COMPACTION_RETENTION: ${ETCD_AUTO_COMPACTION_RETENTION:-1000} - ETCD_QUOTA_BACKEND_BYTES: ${ETCD_QUOTA_BACKEND_BYTES:-4294967296} - ETCD_SNAPSHOT_COUNT: ${ETCD_SNAPSHOT_COUNT:-50000} - MINIO_ACCESS_KEY: ${MINIO_ACCESS_KEY:-minioadmin} - MINIO_SECRET_KEY: ${MINIO_SECRET_KEY:-minioadmin} - ETCD_ENDPOINTS: ${ETCD_ENDPOINTS:-etcd:2379} - MINIO_ADDRESS: ${MINIO_ADDRESS:-minio:9000} - MILVUS_AUTHORIZATION_ENABLED: ${MILVUS_AUTHORIZATION_ENABLED:-true} - PGVECTOR_PGUSER: ${PGVECTOR_PGUSER:-postgres} - PGVECTOR_POSTGRES_PASSWORD: ${PGVECTOR_POSTGRES_PASSWORD:-difyai123456} - PGVECTOR_POSTGRES_DB: ${PGVECTOR_POSTGRES_DB:-dify} - PGVECTOR_PGDATA: ${PGVECTOR_PGDATA:-/var/lib/postgresql/data/pgdata} - OPENSEARCH_DISCOVERY_TYPE: ${OPENSEARCH_DISCOVERY_TYPE:-single-node} - OPENSEARCH_BOOTSTRAP_MEMORY_LOCK: ${OPENSEARCH_BOOTSTRAP_MEMORY_LOCK:-true} - OPENSEARCH_JAVA_OPTS_MIN: ${OPENSEARCH_JAVA_OPTS_MIN:-512m} - OPENSEARCH_JAVA_OPTS_MAX: ${OPENSEARCH_JAVA_OPTS_MAX:-1024m} - OPENSEARCH_INITIAL_ADMIN_PASSWORD: ${OPENSEARCH_INITIAL_ADMIN_PASSWORD:-Qazwsxedc!@#123} - OPENSEARCH_MEMLOCK_SOFT: ${OPENSEARCH_MEMLOCK_SOFT:--1} - OPENSEARCH_MEMLOCK_HARD: ${OPENSEARCH_MEMLOCK_HARD:--1} - OPENSEARCH_NOFILE_SOFT: ${OPENSEARCH_NOFILE_SOFT:-65536} - OPENSEARCH_NOFILE_HARD: ${OPENSEARCH_NOFILE_HARD:-65536} - NGINX_SERVER_NAME: ${NGINX_SERVER_NAME:-_} - NGINX_HTTPS_ENABLED: ${NGINX_HTTPS_ENABLED:-false} - NGINX_PORT: ${NGINX_PORT:-80} - NGINX_SSL_PORT: ${NGINX_SSL_PORT:-443} - NGINX_SSL_CERT_FILENAME: ${NGINX_SSL_CERT_FILENAME:-dify.crt} - NGINX_SSL_CERT_KEY_FILENAME: ${NGINX_SSL_CERT_KEY_FILENAME:-dify.key} - NGINX_SSL_PROTOCOLS: ${NGINX_SSL_PROTOCOLS:-TLSv1.1 TLSv1.2 TLSv1.3} - NGINX_WORKER_PROCESSES: ${NGINX_WORKER_PROCESSES:-auto} - NGINX_CLIENT_MAX_BODY_SIZE: ${NGINX_CLIENT_MAX_BODY_SIZE:-15M} - NGINX_KEEPALIVE_TIMEOUT: ${NGINX_KEEPALIVE_TIMEOUT:-65} - NGINX_PROXY_READ_TIMEOUT: ${NGINX_PROXY_READ_TIMEOUT:-3600s} - NGINX_PROXY_SEND_TIMEOUT: ${NGINX_PROXY_SEND_TIMEOUT:-3600s} - NGINX_ENABLE_CERTBOT_CHALLENGE: ${NGINX_ENABLE_CERTBOT_CHALLENGE:-false} - CERTBOT_EMAIL: ${CERTBOT_EMAIL:-your_email@example.com} - CERTBOT_DOMAIN: ${CERTBOT_DOMAIN:-your_domain.com} - CERTBOT_OPTIONS: ${CERTBOT_OPTIONS:-} - SSRF_HTTP_PORT: ${SSRF_HTTP_PORT:-3128} - SSRF_COREDUMP_DIR: ${SSRF_COREDUMP_DIR:-/var/spool/squid} - SSRF_REVERSE_PROXY_PORT: ${SSRF_REVERSE_PROXY_PORT:-8194} - SSRF_SANDBOX_HOST: ${SSRF_SANDBOX_HOST:-sandbox} - EXPOSE_NGINX_PORT: ${EXPOSE_NGINX_PORT:-80} - EXPOSE_NGINX_SSL_PORT: ${EXPOSE_NGINX_SSL_PORT:-443} - POSITION_TOOL_PINS: ${POSITION_TOOL_PINS:-} - POSITION_TOOL_INCLUDES: ${POSITION_TOOL_INCLUDES:-} - POSITION_TOOL_EXCLUDES: ${POSITION_TOOL_EXCLUDES:-} - POSITION_PROVIDER_PINS: ${POSITION_PROVIDER_PINS:-} - POSITION_PROVIDER_INCLUDES: ${POSITION_PROVIDER_INCLUDES:-} - POSITION_PROVIDER_EXCLUDES: ${POSITION_PROVIDER_EXCLUDES:-} - CSP_WHITELIST: ${CSP_WHITELIST:-} - CREATE_TIDB_SERVICE_JOB_ENABLED: ${CREATE_TIDB_SERVICE_JOB_ENABLED:-false} - MAX_SUBMIT_COUNT: ${MAX_SUBMIT_COUNT:-100} - TOP_K_MAX_VALUE: ${TOP_K_MAX_VALUE:-10} - -services: - # API service - api: - image: langgenius/dify-api:0.15.2 - restart: always - environment: - # Use the shared environment variables. - <<: *shared-api-worker-env - # Startup mode, 'api' starts the API server. - MODE: api - SENTRY_DSN: ${API_SENTRY_DSN:-} - SENTRY_TRACES_SAMPLE_RATE: ${API_SENTRY_TRACES_SAMPLE_RATE:-1.0} - SENTRY_PROFILES_SAMPLE_RATE: ${API_SENTRY_PROFILES_SAMPLE_RATE:-1.0} - depends_on: - - db - - redis - volumes: - # Mount the storage directory to the container, for storing user files. - - ./volumes/app/storage:/app/api/storage - networks: - - ssrf_proxy_network - - default - extra_hosts: - - host.docker.internal:host-gateway - - - # worker service - # The Celery worker for processing the queue. - worker: - image: langgenius/dify-api:0.15.2 - restart: always - environment: - # Use the shared environment variables. - <<: *shared-api-worker-env - # Startup mode, 'worker' starts the Celery worker for processing the queue. - MODE: worker - SENTRY_DSN: ${API_SENTRY_DSN:-} - SENTRY_TRACES_SAMPLE_RATE: ${API_SENTRY_TRACES_SAMPLE_RATE:-1.0} - SENTRY_PROFILES_SAMPLE_RATE: ${API_SENTRY_PROFILES_SAMPLE_RATE:-1.0} - depends_on: - - db - - redis - volumes: - # Mount the storage directory to the container, for storing user files. - - ./volumes/app/storage:/app/api/storage - networks: - - ssrf_proxy_network - - default - - # Frontend web application. - web: - image: langgenius/dify-web:0.15.2 - restart: always - environment: - CONSOLE_API_URL: ${CONSOLE_API_URL:-} - APP_API_URL: ${APP_API_URL:-} - SENTRY_DSN: ${WEB_SENTRY_DSN:-} - NEXT_TELEMETRY_DISABLED: ${NEXT_TELEMETRY_DISABLED:-0} - TEXT_GENERATION_TIMEOUT_MS: ${TEXT_GENERATION_TIMEOUT_MS:-60000} - CSP_WHITELIST: ${CSP_WHITELIST:-} - TOP_K_MAX_VALUE: ${TOP_K_MAX_VALUE:-} - INDEXING_MAX_SEGMENTATION_TOKENS_LENGTH: ${INDEXING_MAX_SEGMENTATION_TOKENS_LENGTH:-} - extra_hosts: - - host.docker.internal:host-gateway - - - # The postgres database. - db: - image: postgres:15-alpine - restart: always - environment: - PGUSER: ${PGUSER:-postgres} - POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-difyai123456} - POSTGRES_DB: ${POSTGRES_DB:-dify} - PGDATA: ${PGDATA:-/var/lib/postgresql/data/pgdata} - command: > - postgres -c 'max_connections=${POSTGRES_MAX_CONNECTIONS:-100}' - -c 'shared_buffers=${POSTGRES_SHARED_BUFFERS:-128MB}' - -c 'work_mem=${POSTGRES_WORK_MEM:-4MB}' - -c 'maintenance_work_mem=${POSTGRES_MAINTENANCE_WORK_MEM:-64MB}' - -c 'effective_cache_size=${POSTGRES_EFFECTIVE_CACHE_SIZE:-4096MB}' - volumes: - - ./volumes/db/data:/var/lib/postgresql/data - healthcheck: - test: [ 'CMD', 'pg_isready' ] - interval: 1s - timeout: 3s - retries: 30 - - # The redis cache. - redis: - image: redis:6-alpine - restart: always - environment: - REDISCLI_AUTH: ${REDIS_PASSWORD:-difyai123456} - volumes: - # Mount the redis data directory to the container. - - ./volumes/redis/data:/data - # Set the redis password when startup redis server. - command: redis-server --requirepass ${REDIS_PASSWORD:-difyai123456} - healthcheck: - test: [ 'CMD', 'redis-cli', 'ping' ] - - # The DifySandbox - sandbox: - image: langgenius/dify-sandbox:0.2.10 - restart: always - environment: - # The DifySandbox configurations - # Make sure you are changing this key for your deployment with a strong key. - # You can generate a strong key using `openssl rand -base64 42`. - API_KEY: ${SANDBOX_API_KEY:-dify-sandbox} - GIN_MODE: ${SANDBOX_GIN_MODE:-release} - WORKER_TIMEOUT: ${SANDBOX_WORKER_TIMEOUT:-15} - ENABLE_NETWORK: ${SANDBOX_ENABLE_NETWORK:-true} - HTTP_PROXY: ${SANDBOX_HTTP_PROXY:-http://ssrf_proxy:3128} - HTTPS_PROXY: ${SANDBOX_HTTPS_PROXY:-http://ssrf_proxy:3128} - SANDBOX_PORT: ${SANDBOX_PORT:-8194} - volumes: - - ./volumes/sandbox/dependencies:/dependencies - healthcheck: - test: [ 'CMD', 'curl', '-f', 'http://localhost:8194/health' ] - networks: - - ssrf_proxy_network - - # ssrf_proxy server - # for more information, please refer to - # https://docs.dify.ai/learn-more/faq/install-faq#id-18.-why-is-ssrf_proxy-needed - ssrf_proxy: - image: ubuntu/squid:latest - restart: always - volumes: - - ./ssrf_proxy/squid.conf.template:/etc/squid/squid.conf.template - - ./ssrf_proxy/docker-entrypoint.sh:/docker-entrypoint-mount.sh - entrypoint: [ 'sh', '-c', "cp /docker-entrypoint-mount.sh /docker-entrypoint.sh && sed -i 's/\r$$//' /docker-entrypoint.sh && chmod +x /docker-entrypoint.sh && /docker-entrypoint.sh" ] - environment: - # pls clearly modify the squid env vars to fit your network environment. - HTTP_PORT: ${SSRF_HTTP_PORT:-3128} - COREDUMP_DIR: ${SSRF_COREDUMP_DIR:-/var/spool/squid} - REVERSE_PROXY_PORT: ${SSRF_REVERSE_PROXY_PORT:-8194} - SANDBOX_HOST: ${SSRF_SANDBOX_HOST:-sandbox} - SANDBOX_PORT: ${SANDBOX_PORT:-8194} - networks: - - ssrf_proxy_network - - default - - # Certbot service - # use `docker-compose --profile certbot up` to start the certbot service. - certbot: - image: certbot/certbot - profiles: - - certbot - volumes: - - ./volumes/certbot/conf:/etc/letsencrypt - - ./volumes/certbot/www:/var/www/html - - ./volumes/certbot/logs:/var/log/letsencrypt - - ./volumes/certbot/conf/live:/etc/letsencrypt/live - - ./certbot/update-cert.template.txt:/update-cert.template.txt - - ./certbot/docker-entrypoint.sh:/docker-entrypoint.sh - environment: - - CERTBOT_EMAIL=${CERTBOT_EMAIL} - - CERTBOT_DOMAIN=${CERTBOT_DOMAIN} - - CERTBOT_OPTIONS=${CERTBOT_OPTIONS:-} - entrypoint: [ '/docker-entrypoint.sh' ] - command: [ 'tail', '-f', '/dev/null' ] - - # The nginx reverse proxy. - # used for reverse proxying the API service and Web service. - nginx: - image: nginx:latest - restart: always - volumes: - - ./nginx/nginx.conf.template:/etc/nginx/nginx.conf.template - - ./nginx/proxy.conf.template:/etc/nginx/proxy.conf.template - - ./nginx/https.conf.template:/etc/nginx/https.conf.template - - ./nginx/conf.d:/etc/nginx/conf.d - - ./nginx/docker-entrypoint.sh:/docker-entrypoint-mount.sh - - ./nginx/ssl:/etc/ssl # cert dir (legacy) - - ./volumes/certbot/conf/live:/etc/letsencrypt/live # cert dir (with certbot container) - - ./volumes/certbot/conf:/etc/letsencrypt - - ./volumes/certbot/www:/var/www/html - entrypoint: [ 'sh', '-c', "cp /docker-entrypoint-mount.sh /docker-entrypoint.sh && sed -i 's/\r$$//' /docker-entrypoint.sh && chmod +x /docker-entrypoint.sh && /docker-entrypoint.sh" ] - environment: - NGINX_SERVER_NAME: ${NGINX_SERVER_NAME:-_} - NGINX_HTTPS_ENABLED: ${NGINX_HTTPS_ENABLED:-false} - NGINX_SSL_PORT: ${NGINX_SSL_PORT:-443} - NGINX_PORT: ${NGINX_PORT:-80} - # You're required to add your own SSL certificates/keys to the `./nginx/ssl` directory - # and modify the env vars below in .env if HTTPS_ENABLED is true. - NGINX_SSL_CERT_FILENAME: ${NGINX_SSL_CERT_FILENAME:-dify.crt} - NGINX_SSL_CERT_KEY_FILENAME: ${NGINX_SSL_CERT_KEY_FILENAME:-dify.key} - NGINX_SSL_PROTOCOLS: ${NGINX_SSL_PROTOCOLS:-TLSv1.1 TLSv1.2 TLSv1.3} - NGINX_WORKER_PROCESSES: ${NGINX_WORKER_PROCESSES:-auto} - NGINX_CLIENT_MAX_BODY_SIZE: ${NGINX_CLIENT_MAX_BODY_SIZE:-15M} - NGINX_KEEPALIVE_TIMEOUT: ${NGINX_KEEPALIVE_TIMEOUT:-65} - NGINX_PROXY_READ_TIMEOUT: ${NGINX_PROXY_READ_TIMEOUT:-3600s} - NGINX_PROXY_SEND_TIMEOUT: ${NGINX_PROXY_SEND_TIMEOUT:-3600s} - NGINX_ENABLE_CERTBOT_CHALLENGE: ${NGINX_ENABLE_CERTBOT_CHALLENGE:-false} - CERTBOT_DOMAIN: ${CERTBOT_DOMAIN:-} - depends_on: - - api - - web - ports: - - '${EXPOSE_NGINX_PORT:-80}:${NGINX_PORT:-80}' - - '${EXPOSE_NGINX_SSL_PORT:-443}:${NGINX_SSL_PORT:-443}' - - # The TiDB vector store. - # For production use, please refer to https://github.com/pingcap/tidb-docker-compose - tidb: - image: pingcap/tidb:v8.4.0 - profiles: - - tidb - command: - - --store=unistore - restart: always - - # The Weaviate vector store. - weaviate: - image: semitechnologies/weaviate:1.19.0 - profiles: - - '' - - weaviate - restart: always - volumes: - # Mount the Weaviate data directory to the con tainer. - - ./volumes/weaviate:/var/lib/weaviate - environment: - # The Weaviate configurations - # You can refer to the [Weaviate](https://weaviate.io/developers/weaviate/config-refs/env-vars) documentation for more information. - PERSISTENCE_DATA_PATH: ${WEAVIATE_PERSISTENCE_DATA_PATH:-/var/lib/weaviate} - QUERY_DEFAULTS_LIMIT: ${WEAVIATE_QUERY_DEFAULTS_LIMIT:-25} - AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED: ${WEAVIATE_AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED:-false} - DEFAULT_VECTORIZER_MODULE: ${WEAVIATE_DEFAULT_VECTORIZER_MODULE:-none} - CLUSTER_HOSTNAME: ${WEAVIATE_CLUSTER_HOSTNAME:-node1} - AUTHENTICATION_APIKEY_ENABLED: ${WEAVIATE_AUTHENTICATION_APIKEY_ENABLED:-true} - AUTHENTICATION_APIKEY_ALLOWED_KEYS: ${WEAVIATE_AUTHENTICATION_APIKEY_ALLOWED_KEYS:-WVF5YThaHlkYwhGUSmCRgsX3tD5ngdN8pkih} - AUTHENTICATION_APIKEY_USERS: ${WEAVIATE_AUTHENTICATION_APIKEY_USERS:-hello@dify.ai} - AUTHORIZATION_ADMINLIST_ENABLED: ${WEAVIATE_AUTHORIZATION_ADMINLIST_ENABLED:-true} - AUTHORIZATION_ADMINLIST_USERS: ${WEAVIATE_AUTHORIZATION_ADMINLIST_USERS:-hello@dify.ai} - - # Qdrant vector store. - # (if used, you need to set VECTOR_STORE to qdrant in the api & worker service.) - qdrant: - image: langgenius/qdrant:v1.7.3 - profiles: - - qdrant - restart: always - volumes: - - ./volumes/qdrant:/qdrant/storage - environment: - QDRANT_API_KEY: ${QDRANT_API_KEY:-difyai123456} - - # The Couchbase vector store. - couchbase-server: - build: ./couchbase-server - profiles: - - couchbase - restart: always - environment: - - CLUSTER_NAME=dify_search - - COUCHBASE_ADMINISTRATOR_USERNAME=${COUCHBASE_USER:-Administrator} - - COUCHBASE_ADMINISTRATOR_PASSWORD=${COUCHBASE_PASSWORD:-password} - - COUCHBASE_BUCKET=${COUCHBASE_BUCKET_NAME:-Embeddings} - - COUCHBASE_BUCKET_RAMSIZE=512 - - COUCHBASE_RAM_SIZE=2048 - - COUCHBASE_EVENTING_RAM_SIZE=512 - - COUCHBASE_INDEX_RAM_SIZE=512 - - COUCHBASE_FTS_RAM_SIZE=1024 - hostname: couchbase-server - container_name: couchbase-server - working_dir: /opt/couchbase - stdin_open: true - tty: true - entrypoint: [ "" ] - command: sh -c "/opt/couchbase/init/init-cbserver.sh" - volumes: - - ./volumes/couchbase/data:/opt/couchbase/var/lib/couchbase/data - healthcheck: - # ensure bucket was created before proceeding - test: [ "CMD-SHELL", "curl -s -f -u Administrator:password http://localhost:8091/pools/default/buckets | grep -q '\\[{' || exit 1" ] - interval: 10s - retries: 10 - start_period: 30s - timeout: 10s - - # The pgvector vector database. - pgvector: - image: pgvector/pgvector:pg16 - profiles: - - pgvector - restart: always - environment: - PGUSER: ${PGVECTOR_PGUSER:-postgres} - # The password for the default postgres user. - POSTGRES_PASSWORD: ${PGVECTOR_POSTGRES_PASSWORD:-difyai123456} - # The name of the default postgres database. - POSTGRES_DB: ${PGVECTOR_POSTGRES_DB:-dify} - # postgres data directory - PGDATA: ${PGVECTOR_PGDATA:-/var/lib/postgresql/data/pgdata} - volumes: - - ./volumes/pgvector/data:/var/lib/postgresql/data - healthcheck: - test: [ 'CMD', 'pg_isready' ] - interval: 1s - timeout: 3s - retries: 30 - - # pgvecto-rs vector store - pgvecto-rs: - image: tensorchord/pgvecto-rs:pg16-v0.3.0 - profiles: - - pgvecto-rs - restart: always - environment: - PGUSER: ${PGVECTOR_PGUSER:-postgres} - # The password for the default postgres user. - POSTGRES_PASSWORD: ${PGVECTOR_POSTGRES_PASSWORD:-difyai123456} - # The name of the default postgres database. - POSTGRES_DB: ${PGVECTOR_POSTGRES_DB:-dify} - # postgres data directory - PGDATA: ${PGVECTOR_PGDATA:-/var/lib/postgresql/data/pgdata} - volumes: - - ./volumes/pgvecto_rs/data:/var/lib/postgresql/data - healthcheck: - test: [ 'CMD', 'pg_isready' ] - interval: 1s - timeout: 3s - retries: 30 - - # Chroma vector database - chroma: - image: ghcr.io/chroma-core/chroma:0.5.20 - profiles: - - chroma - restart: always - volumes: - - ./volumes/chroma:/chroma/chroma - environment: - CHROMA_SERVER_AUTHN_CREDENTIALS: ${CHROMA_SERVER_AUTHN_CREDENTIALS:-difyai123456} - CHROMA_SERVER_AUTHN_PROVIDER: ${CHROMA_SERVER_AUTHN_PROVIDER:-chromadb.auth.token_authn.TokenAuthenticationServerProvider} - IS_PERSISTENT: ${CHROMA_IS_PERSISTENT:-TRUE} - - # OceanBase vector database - oceanbase: - image: quay.io/oceanbase/oceanbase-ce:4.3.3.0-100000142024101215 - profiles: - - oceanbase - restart: always - volumes: - - ./volumes/oceanbase/data:/root/ob - - ./volumes/oceanbase/conf:/root/.obd/cluster - - ./volumes/oceanbase/init.d:/root/boot/init.d - environment: - OB_MEMORY_LIMIT: ${OCEANBASE_MEMORY_LIMIT:-6G} - OB_SYS_PASSWORD: ${OCEANBASE_VECTOR_PASSWORD:-difyai123456} - OB_TENANT_PASSWORD: ${OCEANBASE_VECTOR_PASSWORD:-difyai123456} - OB_CLUSTER_NAME: ${OCEANBASE_CLUSTER_NAME:-difyai} - OB_SERVER_IP: '127.0.0.1' - - # Oracle vector database - oracle: - image: container-registry.oracle.com/database/free:latest - profiles: - - oracle - restart: always - volumes: - - source: oradata - type: volume - target: /opt/oracle/oradata - - ./startupscripts:/opt/oracle/scripts/startup - environment: - ORACLE_PWD: ${ORACLE_PWD:-Dify123456} - ORACLE_CHARACTERSET: ${ORACLE_CHARACTERSET:-AL32UTF8} - - # Milvus vector database services - etcd: - container_name: milvus-etcd - image: quay.io/coreos/etcd:v3.5.5 - profiles: - - milvus - environment: - ETCD_AUTO_COMPACTION_MODE: ${ETCD_AUTO_COMPACTION_MODE:-revision} - ETCD_AUTO_COMPACTION_RETENTION: ${ETCD_AUTO_COMPACTION_RETENTION:-1000} - ETCD_QUOTA_BACKEND_BYTES: ${ETCD_QUOTA_BACKEND_BYTES:-4294967296} - ETCD_SNAPSHOT_COUNT: ${ETCD_SNAPSHOT_COUNT:-50000} - volumes: - - ./volumes/milvus/etcd:/etcd - command: etcd -advertise-client-urls=http://127.0.0.1:2379 -listen-client-urls http://0.0.0.0:2379 --data-dir /etcd - healthcheck: - test: [ 'CMD', 'etcdctl', 'endpoint', 'health' ] - interval: 30s - timeout: 20s - retries: 3 - networks: - - milvus - - minio: - container_name: milvus-minio - image: minio/minio:RELEASE.2023-03-20T20-16-18Z - profiles: - - milvus - environment: - MINIO_ACCESS_KEY: ${MINIO_ACCESS_KEY:-minioadmin} - MINIO_SECRET_KEY: ${MINIO_SECRET_KEY:-minioadmin} - volumes: - - ./volumes/milvus/minio:/minio_data - command: minio server /minio_data --console-address ":9001" - healthcheck: - test: [ 'CMD', 'curl', '-f', 'http://localhost:9000/minio/health/live' ] - interval: 30s - timeout: 20s - retries: 3 - networks: - - milvus - - milvus-standalone: - container_name: milvus-standalone - image: milvusdb/milvus:v2.5.0-beta - profiles: - - milvus - command: [ 'milvus', 'run', 'standalone' ] - environment: - ETCD_ENDPOINTS: ${ETCD_ENDPOINTS:-etcd:2379} - MINIO_ADDRESS: ${MINIO_ADDRESS:-minio:9000} - common.security.authorizationEnabled: ${MILVUS_AUTHORIZATION_ENABLED:-true} - volumes: - - ./volumes/milvus/milvus:/var/lib/milvus - healthcheck: - test: [ 'CMD', 'curl', '-f', 'http://localhost:9091/healthz' ] - interval: 30s - start_period: 90s - timeout: 20s - retries: 3 - depends_on: - - etcd - - minio - ports: - - 19530:19530 - - 9091:9091 - networks: - - milvus - - # Opensearch vector database - opensearch: - container_name: opensearch - image: opensearchproject/opensearch:latest - profiles: - - opensearch - environment: - discovery.type: ${OPENSEARCH_DISCOVERY_TYPE:-single-node} - bootstrap.memory_lock: ${OPENSEARCH_BOOTSTRAP_MEMORY_LOCK:-true} - OPENSEARCH_JAVA_OPTS: -Xms${OPENSEARCH_JAVA_OPTS_MIN:-512m} -Xmx${OPENSEARCH_JAVA_OPTS_MAX:-1024m} - OPENSEARCH_INITIAL_ADMIN_PASSWORD: ${OPENSEARCH_INITIAL_ADMIN_PASSWORD:-Qazwsxedc!@#123} - ulimits: - memlock: - soft: ${OPENSEARCH_MEMLOCK_SOFT:--1} - hard: ${OPENSEARCH_MEMLOCK_HARD:--1} - nofile: - soft: ${OPENSEARCH_NOFILE_SOFT:-65536} - hard: ${OPENSEARCH_NOFILE_HARD:-65536} - volumes: - - ./volumes/opensearch/data:/usr/share/opensearch/data - networks: - - opensearch-net - - opensearch-dashboards: - container_name: opensearch-dashboards - image: opensearchproject/opensearch-dashboards:latest - profiles: - - opensearch - environment: - OPENSEARCH_HOSTS: '["https://opensearch:9200"]' - volumes: - - ./volumes/opensearch/opensearch_dashboards.yml:/usr/share/opensearch-dashboards/config/opensearch_dashboards.yml - networks: - - opensearch-net - depends_on: - - opensearch - - # MyScale vector database - myscale: - container_name: myscale - image: myscale/myscaledb:1.6.4 - profiles: - - myscale - restart: always - tty: true - volumes: - - ./volumes/myscale/data:/var/lib/clickhouse - - ./volumes/myscale/log:/var/log/clickhouse-server - - ./volumes/myscale/config/users.d/custom_users_config.xml:/etc/clickhouse-server/users.d/custom_users_config.xml - ports: - - ${MYSCALE_PORT:-8123}:${MYSCALE_PORT:-8123} - - # https://www.elastic.co/guide/en/elasticsearch/reference/current/settings.html - # https://www.elastic.co/guide/en/elasticsearch/reference/current/docker.html#docker-prod-prerequisites - elasticsearch: - image: docker.elastic.co/elasticsearch/elasticsearch:8.14.3 - container_name: elasticsearch - profiles: - - elasticsearch - - elasticsearch-ja - restart: always - volumes: - - ./elasticsearch/docker-entrypoint.sh:/docker-entrypoint-mount.sh - - dify_es01_data:/usr/share/elasticsearch/data - environment: - ELASTIC_PASSWORD: ${ELASTICSEARCH_PASSWORD:-elastic} - VECTOR_STORE: ${VECTOR_STORE:-} - cluster.name: dify-es-cluster - node.name: dify-es0 - discovery.type: single-node - xpack.license.self_generated.type: basic - xpack.security.enabled: 'true' - xpack.security.enrollment.enabled: 'false' - xpack.security.http.ssl.enabled: 'false' - ports: - - ${ELASTICSEARCH_PORT:-9200}:9200 - deploy: - resources: - limits: - memory: 2g - entrypoint: [ 'sh', '-c', "sh /docker-entrypoint-mount.sh" ] - healthcheck: - test: [ 'CMD', 'curl', '-s', 'http://localhost:9200/_cluster/health?pretty' ] - interval: 30s - timeout: 10s - retries: 50 - - # https://www.elastic.co/guide/en/kibana/current/docker.html - # https://www.elastic.co/guide/en/kibana/current/settings.html - kibana: - image: docker.elastic.co/kibana/kibana:8.14.3 - container_name: kibana - profiles: - - elasticsearch - depends_on: - - elasticsearch - restart: always - environment: - XPACK_ENCRYPTEDSAVEDOBJECTS_ENCRYPTIONKEY: d1a66dfd-c4d3-4a0a-8290-2abcb83ab3aa - NO_PROXY: localhost,127.0.0.1,elasticsearch,kibana - XPACK_SECURITY_ENABLED: 'true' - XPACK_SECURITY_ENROLLMENT_ENABLED: 'false' - XPACK_SECURITY_HTTP_SSL_ENABLED: 'false' - XPACK_FLEET_ISAIRGAPPED: 'true' - I18N_LOCALE: zh-CN - SERVER_PORT: '5601' - ELASTICSEARCH_HOSTS: http://elasticsearch:9200 - ports: - - ${KIBANA_PORT:-5601}:5601 - healthcheck: - test: [ 'CMD-SHELL', 'curl -s http://localhost:5601 >/dev/null || exit 1' ] - interval: 30s - timeout: 10s - retries: 3 - - # unstructured . - # (if used, you need to set ETL_TYPE to Unstructured in the api & worker service.) - unstructured: - image: downloads.unstructured.io/unstructured-io/unstructured-api:latest - profiles: - - unstructured - restart: always - volumes: - - ./volumes/unstructured:/app/data - -networks: - # create a network between sandbox, api and ssrf_proxy, and can not access outside. - ssrf_proxy_network: - driver: bridge - internal: true - milvus: - driver: bridge - opensearch-net: - driver: bridge - internal: true - -volumes: - oradata: - dify_es01_data: diff --git a/pre/docker/elasticsearch/docker-entrypoint.sh b/pre/docker/elasticsearch/docker-entrypoint.sh deleted file mode 100755 index 6669aec..0000000 --- a/pre/docker/elasticsearch/docker-entrypoint.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/bash - -set -e - -if [ "${VECTOR_STORE}" = "elasticsearch-ja" ]; then - # Check if the ICU tokenizer plugin is installed - if ! /usr/share/elasticsearch/bin/elasticsearch-plugin list | grep -q analysis-icu; then - printf '%s\n' "Installing the ICU tokenizer plugin" - if ! /usr/share/elasticsearch/bin/elasticsearch-plugin install analysis-icu; then - printf '%s\n' "Failed to install the ICU tokenizer plugin" - exit 1 - fi - fi - # Check if the Japanese language analyzer plugin is installed - if ! /usr/share/elasticsearch/bin/elasticsearch-plugin list | grep -q analysis-kuromoji; then - printf '%s\n' "Installing the Japanese language analyzer plugin" - if ! /usr/share/elasticsearch/bin/elasticsearch-plugin install analysis-kuromoji; then - printf '%s\n' "Failed to install the Japanese language analyzer plugin" - exit 1 - fi - fi -fi - -# Run the original entrypoint script -exec /bin/tini -- /usr/local/bin/docker-entrypoint.sh diff --git a/pre/docker/generate_docker_compose b/pre/docker/generate_docker_compose deleted file mode 100755 index b5c0ace..0000000 --- a/pre/docker/generate_docker_compose +++ /dev/null @@ -1,112 +0,0 @@ -#!/usr/bin/env python3 -import os -import re -import sys - - -def parse_env_example(file_path): - """ - Parses the .env.example file and returns a dictionary with variable names as keys and default values as values. - """ - env_vars = {} - with open(file_path, "r") as f: - for line_number, line in enumerate(f, 1): - line = line.strip() - # Ignore empty lines and comments - if not line or line.startswith("#"): - continue - # Use regex to parse KEY=VALUE - match = re.match(r"^([^=]+)=(.*)$", line) - if match: - key = match.group(1).strip() - value = match.group(2).strip() - # Remove possible quotes around the value - if (value.startswith('"') and value.endswith('"')) or ( - value.startswith("'") and value.endswith("'") - ): - value = value[1:-1] - env_vars[key] = value - else: - print(f"Warning: Unable to parse line {line_number}: {line}") - return env_vars - - -def generate_shared_env_block(env_vars, anchor_name="shared-api-worker-env"): - """ - Generates a shared environment variables block as a YAML string. - """ - lines = [f"x-shared-env: &{anchor_name}"] - for key, default in env_vars.items(): - if key == "COMPOSE_PROFILES": - continue - # If default value is empty, use ${KEY:-} - if default == "": - lines.append(f" {key}: ${{{key}:-}}") - else: - # If default value contains special characters, wrap it in quotes - if re.search(r"[:\s]", default): - default = f"{default}" - lines.append(f" {key}: ${{{key}:-{default}}}") - return "\n".join(lines) - - -def insert_shared_env(template_path, output_path, shared_env_block, header_comments): - """ - Inserts the shared environment variables block and header comments into the template file, - removing any existing x-shared-env anchors, and generates the final docker-compose.yaml file. - """ - with open(template_path, "r") as f: - template_content = f.read() - - # Remove existing x-shared-env: &shared-api-worker-env lines - template_content = re.sub( - r"^x-shared-env: &shared-api-worker-env\s*\n?", - "", - template_content, - flags=re.MULTILINE, - ) - - # Prepare the final content with header comments and shared env block - final_content = f"{header_comments}\n{shared_env_block}\n\n{template_content}" - - with open(output_path, "w") as f: - f.write(final_content) - print(f"Generated {output_path}") - - -def main(): - env_example_path = ".env.example" - template_path = "docker-compose-template.yaml" - output_path = "docker-compose.yaml" - anchor_name = "shared-api-worker-env" # Can be modified as needed - - # Define header comments to be added at the top of docker-compose.yaml - header_comments = ( - "# ==================================================================\n" - "# WARNING: This file is auto-generated by generate_docker_compose\n" - "# Do not modify this file directly. Instead, update the .env.example\n" - "# or docker-compose-template.yaml and regenerate this file.\n" - "# ==================================================================\n" - ) - - # Check if required files exist - for path in [env_example_path, template_path]: - if not os.path.isfile(path): - print(f"Error: File {path} does not exist.") - sys.exit(1) - - # Parse .env.example file - env_vars = parse_env_example(env_example_path) - - if not env_vars: - print("Warning: No environment variables found in .env.example.") - - # Generate shared environment variables block - shared_env_block = generate_shared_env_block(env_vars, anchor_name) - - # Insert shared environment variables block and header comments into the template - insert_shared_env(template_path, output_path, shared_env_block, header_comments) - - -if __name__ == "__main__": - main() diff --git a/pre/docker/middleware.env.example b/pre/docker/middleware.env.example deleted file mode 100644 index c4ce9f0..0000000 --- a/pre/docker/middleware.env.example +++ /dev/null @@ -1,89 +0,0 @@ -# ------------------------------ -# Environment Variables for db Service -# ------------------------------ -PGUSER=postgres -# The password for the default postgres user. -POSTGRES_PASSWORD=difyai123456 -# The name of the default postgres database. -POSTGRES_DB=dify -# postgres data directory -PGDATA=/var/lib/postgresql/data/pgdata -PGDATA_HOST_VOLUME=./volumes/db/data - -# Maximum number of connections to the database -# Default is 100 -# -# Reference: https://www.postgresql.org/docs/current/runtime-config-connection.html#GUC-MAX-CONNECTIONS -POSTGRES_MAX_CONNECTIONS=100 - -# Sets the amount of shared memory used for postgres's shared buffers. -# Default is 128MB -# Recommended value: 25% of available memory -# Reference: https://www.postgresql.org/docs/current/runtime-config-resource.html#GUC-SHARED-BUFFERS -POSTGRES_SHARED_BUFFERS=128MB - -# Sets the amount of memory used by each database worker for working space. -# Default is 4MB -# -# Reference: https://www.postgresql.org/docs/current/runtime-config-resource.html#GUC-WORK-MEM -POSTGRES_WORK_MEM=4MB - -# Sets the amount of memory reserved for maintenance activities. -# Default is 64MB -# -# Reference: https://www.postgresql.org/docs/current/runtime-config-resource.html#GUC-MAINTENANCE-WORK-MEM -POSTGRES_MAINTENANCE_WORK_MEM=64MB - -# Sets the planner's assumption about the effective cache size. -# Default is 4096MB -# -# Reference: https://www.postgresql.org/docs/current/runtime-config-query.html#GUC-EFFECTIVE-CACHE-SIZE -POSTGRES_EFFECTIVE_CACHE_SIZE=4096MB - -# ----------------------------- -# Environment Variables for redis Service -# ----------------------------- -REDIS_HOST_VOLUME=./volumes/redis/data -REDIS_PASSWORD=difyai123456 - -# ------------------------------ -# Environment Variables for sandbox Service -# ------------------------------ -SANDBOX_API_KEY=dify-sandbox -SANDBOX_GIN_MODE=release -SANDBOX_WORKER_TIMEOUT=15 -SANDBOX_ENABLE_NETWORK=true -SANDBOX_HTTP_PROXY=http://ssrf_proxy:3128 -SANDBOX_HTTPS_PROXY=http://ssrf_proxy:3128 -SANDBOX_PORT=8194 - -# ------------------------------ -# Environment Variables for ssrf_proxy Service -# ------------------------------ -SSRF_HTTP_PORT=3128 -SSRF_COREDUMP_DIR=/var/spool/squid -SSRF_REVERSE_PROXY_PORT=8194 -SSRF_SANDBOX_HOST=sandbox - -# ------------------------------ -# Environment Variables for weaviate Service -# ------------------------------ -WEAVIATE_QUERY_DEFAULTS_LIMIT=25 -WEAVIATE_AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED=true -WEAVIATE_DEFAULT_VECTORIZER_MODULE=none -WEAVIATE_CLUSTER_HOSTNAME=node1 -WEAVIATE_AUTHENTICATION_APIKEY_ENABLED=true -WEAVIATE_AUTHENTICATION_APIKEY_ALLOWED_KEYS=WVF5YThaHlkYwhGUSmCRgsX3tD5ngdN8pkih -WEAVIATE_AUTHENTICATION_APIKEY_USERS=hello@dify.ai -WEAVIATE_AUTHORIZATION_ADMINLIST_ENABLED=true -WEAVIATE_AUTHORIZATION_ADMINLIST_USERS=hello@dify.ai -WEAVIATE_HOST_VOLUME=./volumes/weaviate - -# ------------------------------ -# Docker Compose Service Expose Host Port Configurations -# ------------------------------ -EXPOSE_POSTGRES_PORT=5432 -EXPOSE_REDIS_PORT=6379 -EXPOSE_SANDBOX_PORT=8194 -EXPOSE_SSRF_PROXY_PORT=3128 -EXPOSE_WEAVIATE_PORT=8080 diff --git a/pre/docker/nginx/conf.d/default.conf b/pre/docker/nginx/conf.d/default.conf deleted file mode 100644 index e2ffa3f..0000000 --- a/pre/docker/nginx/conf.d/default.conf +++ /dev/null @@ -1,37 +0,0 @@ -# Please do not directly edit this file. Instead, modify the .env variables related to NGINX configuration. - -server { - listen 80; - server_name _; - - location /console/api { - proxy_pass http://api:5001; - include proxy.conf; - } - - location /api { - proxy_pass http://api:5001; - include proxy.conf; - } - - location /v1 { - proxy_pass http://api:5001; - include proxy.conf; - } - - location /files { - proxy_pass http://api:5001; - include proxy.conf; - } - - location / { - proxy_pass http://web:3000; - include proxy.conf; - } - - # placeholder for acme challenge location - - - # placeholder for https config defined in https.conf.template - -} diff --git a/pre/docker/nginx/conf.d/default.conf.template b/pre/docker/nginx/conf.d/default.conf.template deleted file mode 100644 index 9691122..0000000 --- a/pre/docker/nginx/conf.d/default.conf.template +++ /dev/null @@ -1,37 +0,0 @@ -# Please do not directly edit this file. Instead, modify the .env variables related to NGINX configuration. - -server { - listen ${NGINX_PORT}; - server_name ${NGINX_SERVER_NAME}; - - location /console/api { - proxy_pass http://api:5001; - include proxy.conf; - } - - location /api { - proxy_pass http://api:5001; - include proxy.conf; - } - - location /v1 { - proxy_pass http://api:5001; - include proxy.conf; - } - - location /files { - proxy_pass http://api:5001; - include proxy.conf; - } - - location / { - proxy_pass http://web:3000; - include proxy.conf; - } - - # placeholder for acme challenge location - ${ACME_CHALLENGE_LOCATION} - - # placeholder for https config defined in https.conf.template - ${HTTPS_CONFIG} -} diff --git a/pre/docker/nginx/docker-entrypoint.sh b/pre/docker/nginx/docker-entrypoint.sh deleted file mode 100755 index d343cb3..0000000 --- a/pre/docker/nginx/docker-entrypoint.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/bash - -if [ "${NGINX_HTTPS_ENABLED}" = "true" ]; then - # Check if the certificate and key files for the specified domain exist - if [ -n "${CERTBOT_DOMAIN}" ] && \ - [ -f "/etc/letsencrypt/live/${CERTBOT_DOMAIN}/${NGINX_SSL_CERT_FILENAME}" ] && \ - [ -f "/etc/letsencrypt/live/${CERTBOT_DOMAIN}/${NGINX_SSL_CERT_KEY_FILENAME}" ]; then - SSL_CERTIFICATE_PATH="/etc/letsencrypt/live/${CERTBOT_DOMAIN}/${NGINX_SSL_CERT_FILENAME}" - SSL_CERTIFICATE_KEY_PATH="/etc/letsencrypt/live/${CERTBOT_DOMAIN}/${NGINX_SSL_CERT_KEY_FILENAME}" - else - SSL_CERTIFICATE_PATH="/etc/ssl/${NGINX_SSL_CERT_FILENAME}" - SSL_CERTIFICATE_KEY_PATH="/etc/ssl/${NGINX_SSL_CERT_KEY_FILENAME}" - fi - export SSL_CERTIFICATE_PATH - export SSL_CERTIFICATE_KEY_PATH - - # set the HTTPS_CONFIG environment variable to the content of the https.conf.template - HTTPS_CONFIG=$(envsubst < /etc/nginx/https.conf.template) - export HTTPS_CONFIG - # Substitute the HTTPS_CONFIG in the default.conf.template with content from https.conf.template - envsubst '${HTTPS_CONFIG}' < /etc/nginx/conf.d/default.conf.template > /etc/nginx/conf.d/default.conf -fi - -if [ "${NGINX_ENABLE_CERTBOT_CHALLENGE}" = "true" ]; then - ACME_CHALLENGE_LOCATION='location /.well-known/acme-challenge/ { root /var/www/html; }' -else - ACME_CHALLENGE_LOCATION='' -fi -export ACME_CHALLENGE_LOCATION - -env_vars=$(printenv | cut -d= -f1 | sed 's/^/$/g' | paste -sd, -) - -envsubst "$env_vars" < /etc/nginx/nginx.conf.template > /etc/nginx/nginx.conf -envsubst "$env_vars" < /etc/nginx/proxy.conf.template > /etc/nginx/proxy.conf - -envsubst < /etc/nginx/conf.d/default.conf.template > /etc/nginx/conf.d/default.conf - -# Start Nginx using the default entrypoint -exec nginx -g 'daemon off;' \ No newline at end of file diff --git a/pre/docker/nginx/https.conf.template b/pre/docker/nginx/https.conf.template deleted file mode 100644 index 95ea36f..0000000 --- a/pre/docker/nginx/https.conf.template +++ /dev/null @@ -1,9 +0,0 @@ -# Please do not directly edit this file. Instead, modify the .env variables related to NGINX configuration. - -listen ${NGINX_SSL_PORT} ssl; -ssl_certificate ${SSL_CERTIFICATE_PATH}; -ssl_certificate_key ${SSL_CERTIFICATE_KEY_PATH}; -ssl_protocols ${NGINX_SSL_PROTOCOLS}; -ssl_prefer_server_ciphers on; -ssl_session_cache shared:SSL:10m; -ssl_session_timeout 10m; \ No newline at end of file diff --git a/pre/docker/nginx/nginx.conf.template b/pre/docker/nginx/nginx.conf.template deleted file mode 100644 index 32a5716..0000000 --- a/pre/docker/nginx/nginx.conf.template +++ /dev/null @@ -1,34 +0,0 @@ -# Please do not directly edit this file. Instead, modify the .env variables related to NGINX configuration. - -user nginx; -worker_processes ${NGINX_WORKER_PROCESSES}; - -error_log /var/log/nginx/error.log notice; -pid /var/run/nginx.pid; - - -events { - worker_connections 1024; -} - - -http { - include /etc/nginx/mime.types; - default_type application/octet-stream; - - log_format main '$remote_addr - $remote_user [$time_local] "$request" ' - '$status $body_bytes_sent "$http_referer" ' - '"$http_user_agent" "$http_x_forwarded_for"'; - - access_log /var/log/nginx/access.log main; - - sendfile on; - #tcp_nopush on; - - keepalive_timeout ${NGINX_KEEPALIVE_TIMEOUT}; - - #gzip on; - client_max_body_size ${NGINX_CLIENT_MAX_BODY_SIZE}; - - include /etc/nginx/conf.d/*.conf; -} \ No newline at end of file diff --git a/pre/docker/nginx/proxy.conf.template b/pre/docker/nginx/proxy.conf.template deleted file mode 100644 index 6b52d23..0000000 --- a/pre/docker/nginx/proxy.conf.template +++ /dev/null @@ -1,10 +0,0 @@ -# Please do not directly edit this file. Instead, modify the .env variables related to NGINX configuration. - -proxy_set_header Host $host; -proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; -proxy_set_header X-Forwarded-Proto $scheme; -proxy_http_version 1.1; -proxy_set_header Connection ""; -proxy_buffering off; -proxy_read_timeout ${NGINX_PROXY_READ_TIMEOUT}; -proxy_send_timeout ${NGINX_PROXY_SEND_TIMEOUT}; diff --git a/pre/docker/nginx/ssl/.gitkeep b/pre/docker/nginx/ssl/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/ssrf_proxy/docker-entrypoint.sh b/pre/docker/ssrf_proxy/docker-entrypoint.sh deleted file mode 100755 index 613897b..0000000 --- a/pre/docker/ssrf_proxy/docker-entrypoint.sh +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/bash - -# Modified based on Squid OCI image entrypoint - -# This entrypoint aims to forward the squid logs to stdout to assist users of -# common container related tooling (e.g., kubernetes, docker-compose, etc) to -# access the service logs. - -# Moreover, it invokes the squid binary, leaving all the desired parameters to -# be provided by the "command" passed to the spawned container. If no command -# is provided by the user, the default behavior (as per the CMD statement in -# the Dockerfile) will be to use Ubuntu's default configuration [1] and run -# squid with the "-NYC" options to mimic the behavior of the Ubuntu provided -# systemd unit. - -# [1] The default configuration is changed in the Dockerfile to allow local -# network connections. See the Dockerfile for further information. - -echo "[ENTRYPOINT] re-create snakeoil self-signed certificate removed in the build process" -if [ ! -f /etc/ssl/private/ssl-cert-snakeoil.key ]; then - /usr/sbin/make-ssl-cert generate-default-snakeoil --force-overwrite > /dev/null 2>&1 -fi - -tail -F /var/log/squid/access.log 2>/dev/null & -tail -F /var/log/squid/error.log 2>/dev/null & -tail -F /var/log/squid/store.log 2>/dev/null & -tail -F /var/log/squid/cache.log 2>/dev/null & - -# Replace environment variables in the template and output to the squid.conf -echo "[ENTRYPOINT] replacing environment variables in the template" -awk '{ - while(match($0, /\${[A-Za-z_][A-Za-z_0-9]*}/)) { - var = substr($0, RSTART+2, RLENGTH-3) - val = ENVIRON[var] - $0 = substr($0, 1, RSTART-1) val substr($0, RSTART+RLENGTH) - } - print -}' /etc/squid/squid.conf.template > /etc/squid/squid.conf - -/usr/sbin/squid -Nz -echo "[ENTRYPOINT] starting squid" -/usr/sbin/squid -f /etc/squid/squid.conf -NYC 1 diff --git a/pre/docker/ssrf_proxy/squid.conf.template b/pre/docker/ssrf_proxy/squid.conf.template deleted file mode 100644 index a0875a8..0000000 --- a/pre/docker/ssrf_proxy/squid.conf.template +++ /dev/null @@ -1,50 +0,0 @@ -acl localnet src 0.0.0.1-0.255.255.255 # RFC 1122 "this" network (LAN) -acl localnet src 10.0.0.0/8 # RFC 1918 local private network (LAN) -acl localnet src 100.64.0.0/10 # RFC 6598 shared address space (CGN) -acl localnet src 169.254.0.0/16 # RFC 3927 link-local (directly plugged) machines -acl localnet src 172.16.0.0/12 # RFC 1918 local private network (LAN) -acl localnet src 192.168.0.0/16 # RFC 1918 local private network (LAN) -acl localnet src fc00::/7 # RFC 4193 local private network range -acl localnet src fe80::/10 # RFC 4291 link-local (directly plugged) machines -acl SSL_ports port 443 -acl Safe_ports port 80 # http -acl Safe_ports port 21 # ftp -acl Safe_ports port 443 # https -acl Safe_ports port 70 # gopher -acl Safe_ports port 210 # wais -acl Safe_ports port 1025-65535 # unregistered ports -acl Safe_ports port 280 # http-mgmt -acl Safe_ports port 488 # gss-http -acl Safe_ports port 591 # filemaker -acl Safe_ports port 777 # multiling http -acl CONNECT method CONNECT -http_access deny !Safe_ports -http_access deny CONNECT !SSL_ports -http_access allow localhost manager -http_access deny manager -http_access allow localhost -include /etc/squid/conf.d/*.conf -http_access deny all - -################################## Proxy Server ################################ -http_port ${HTTP_PORT} -coredump_dir ${COREDUMP_DIR} -refresh_pattern ^ftp: 1440 20% 10080 -refresh_pattern ^gopher: 1440 0% 1440 -refresh_pattern -i (/cgi-bin/|\?) 0 0% 0 -refresh_pattern \/(Packages|Sources)(|\.bz2|\.gz|\.xz)$ 0 0% 0 refresh-ims -refresh_pattern \/Release(|\.gpg)$ 0 0% 0 refresh-ims -refresh_pattern \/InRelease$ 0 0% 0 refresh-ims -refresh_pattern \/(Translation-.*)(|\.bz2|\.gz|\.xz)$ 0 0% 0 refresh-ims -refresh_pattern . 0 20% 4320 - - -# cache_dir ufs /var/spool/squid 100 16 256 -# upstream proxy, set to your own upstream proxy IP to avoid SSRF attacks -# cache_peer 172.1.1.1 parent 3128 0 no-query no-digest no-netdb-exchange default - -################################## Reverse Proxy To Sandbox ################################ -http_port ${REVERSE_PROXY_PORT} accel vhost -cache_peer ${SANDBOX_HOST} parent ${SANDBOX_PORT} 0 no-query originserver -acl src_all src all -http_access allow src_all diff --git a/pre/docker/startupscripts/init.sh b/pre/docker/startupscripts/init.sh deleted file mode 100755 index c6e6e19..0000000 --- a/pre/docker/startupscripts/init.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/env bash - -DB_INITIALIZED="/opt/oracle/oradata/dbinit" -#[ -f ${DB_INITIALIZED} ] && exit -#touch ${DB_INITIALIZED} -if [ -f ${DB_INITIALIZED} ]; then - echo 'File exists. Standards for have been Init' - exit -else - echo 'File does not exist. Standards for first time Start up this DB' - "$ORACLE_HOME"/bin/sqlplus -s "/ as sysdba" @"/opt/oracle/scripts/startup/init_user.script"; - touch ${DB_INITIALIZED} -fi diff --git a/pre/docker/startupscripts/init_user.script b/pre/docker/startupscripts/init_user.script deleted file mode 100755 index 7aa7c28..0000000 --- a/pre/docker/startupscripts/init_user.script +++ /dev/null @@ -1,10 +0,0 @@ -show pdbs; -ALTER SYSTEM SET PROCESSES=500 SCOPE=SPFILE; -alter session set container= freepdb1; -create user dify identified by dify DEFAULT TABLESPACE users quota unlimited on users; -grant DB_DEVELOPER_ROLE to dify; - -BEGIN -CTX_DDL.CREATE_PREFERENCE('my_chinese_vgram_lexer','CHINESE_VGRAM_LEXER'); -END; -/ diff --git a/pre/docker/volumes/app/storage/privkeys/4b528185-e635-4a86-8813-158a71014efe/private.pem b/pre/docker/volumes/app/storage/privkeys/4b528185-e635-4a86-8813-158a71014efe/private.pem deleted file mode 100644 index d38cc02..0000000 --- a/pre/docker/volumes/app/storage/privkeys/4b528185-e635-4a86-8813-158a71014efe/private.pem +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEAu2oUkHAM0CA5W8DNmyHGnkRFOtVeMzQBblkF7n6zN3BVL9fz -TjKRStKH4FsCRR4M2uLC0jANYp7nvZvQ9kBA9U1K/tuhB5id6lccIT79A3XnZVHN -3YQcFk3v93KjcFZYK6Np2RWAEUe4hoz63+rf68DNVkLodZJDQPHreAu80nzzCDgP -Av3//kFAYaiJaZyRGRaDC5kKwLxYKNQjPLRqyiIZxP5UrXgk+XlqlnO2E1N/yj0X -j/eA4qMYrZS7uTLiGBginiRd5d30+n6XG9J0qzjH8vs+c0KRMLM5wOW2oBk+/mWX -+jFOXxRoa0fgVblmolKI0fTaGc3LxPIDoquVswIDAQABAoIBAAzzksI8jBYh8/TM -SSksV15+l04uipj9QhAPJOLLbLUrFSf+Q3km83V5QRyXDXwbTIYf35jI61PiaV9o -EjPCUvrgwYsFQIaW3GriZDZD9RY1Iq2UzqY9R/eeoTO3f2X3AZbabykqXDRVgYIC -4h9xStIu+8G3U/s0BWPKlBwyq3TcQT6UU+/xTRsD25N//2YQKAH7gJKuu1wtyHt0 -xEb1V+C8CrWWnn114Mh9/LGblVCxOzrGdJUQklkHjq4Ki7RZ/lsBJcPyG1TJPbny -8/RIV6T8WpXaxkz+W9jLTJbfmh6HQLOzLnbbpBr+8mnVEZwg34AyPDS3y8lWrAul -9BX3uCkCgYEAxkJwQVgSs54OIbGcLb4Ig133TGx4OP2ysUpUDF1bDQeWwvJQazHO -0YL2p+RBf4fwKb6s+X4S8rHbiaH/EMcKcHQ18MP2Ntu0ivKq4qkuTtnVhHU4lMeO -TndnDqRdeRGCj2qOTO+hWKIlsTk2s9u0o1A45KrQejxRDHqWvONts58CgYEA8f8Q -aIeiYP1In1FH0+UIUh4uRifJmXfojC0ONRJ4AwiVNLP3yQiOdos2NzdaPKIxbeXv -dEwMRNgZBvTnz/mxXPPH7H3FDr17ZwYmPH1ARdlNIVaueYZcUT3z2vMlNbFUif3G -U5MBvvx2k+FSmrBBQ+kJK3m5dTlQWoukfaMMBW0CgYEAhD0SZPNa3gWBhYXTF0uW -oBDP/2CmO9U0GD7smqa2MZWrQHKhoy5Atcw1uzxrV6YTUbTF6U/nUYvCVCYCXG12 -kBVjWSlME8EtxjQgOTkBE0UGvuf1Cn+kcr//tGt7kWJVhFVdfwGiy9yzaWcxDnxw -GzJKEHPCxJVwtfMakfjcVh8CgYEAqnyyt6HOwRvP/QXLX7n8ibXfjedb/TXf7FmV -p8gyKpjyXSXpDIVtsJBVCsOBXDQ8NJuIfltRTXMc9qy1X+0eikjo8XCN0tulQ6iu -aXEoRc1YrIMf+lexVD8cPIWOEmyzDWBvR9PKqB2/AGH+yyIfaNOVdT6VbMOLG69D -nIuw3WUCgYAtPeToRDrqLboj/uRt1BCeY33aa5wONn/vryu6ToAufP+yznHwQpPQ -XEyKDqc/SclwiMjDLoS2VW0T3QYe1qnGcUHRKdYuut1XhMomqAmjJkEg3CPrDqYL -WE8i/oKjIUFZzyITDf17Gpv4+dbTL7L0XF2s+kwSb68kZ9acLfnRYA== ------END RSA PRIVATE KEY----- \ No newline at end of file diff --git a/pre/docker/volumes/app/storage/upload_files/4b528185-e635-4a86-8813-158a71014efe/0b9f5f54-a156-42ef-a764-bad527374b35.md b/pre/docker/volumes/app/storage/upload_files/4b528185-e635-4a86-8813-158a71014efe/0b9f5f54-a156-42ef-a764-bad527374b35.md deleted file mode 100644 index 325cfa5..0000000 --- a/pre/docker/volumes/app/storage/upload_files/4b528185-e635-4a86-8813-158a71014efe/0b9f5f54-a156-42ef-a764-bad527374b35.md +++ /dev/null @@ -1,128 +0,0 @@ -## docker环境部署 - - - -### 部署方式一:yum部署 - -1. 登陆至部署服务器 - - - -2. 执行以下命令 - - ```shell - yum update -y - ``` - - - -3. 安装docker - - ```shell - yum makecache - yum install -y docker-ce docker-ce-cli containerd.io - ``` - - - -4. 安装docker-compose - - ```shell - cd /tmp - wget https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64 - - mv docker-compose-linux-x86_64 /usr/bin/docker-compose - chmod +x /usr/bin/docker-compose - ``` - - - -### 部署方式二:离线部署 - -1. 如果3执行失败,执行以下命令进行安装(CentOS7.9已测试;) - - ```shell - mkdir -p /tmp/xNet - ``` - - - -2. 将rpms文件夹上传至服务器/tmp/xNet目录下,并执行以下命令安装docker、docker-compose - - ```shell - cd /tmp/xNet/rpms - rpm -Uvh --force --nodeps *.rpm - ``` - - - -### 检查docker安装结果 - -1. 检查docker安装结果 - - ```shell - systemctl daemon-reload - systemctl enable docker - systemctl start docker - systemctl status docker - ``` - - - -2. 检查docker版本 - - ```shell - docker version - ``` - - - -3. 检查docker-compose安装结果 - - ```shell - docker compose version - ``` - - - - -### 配置daemon.json - - -### 日志 - -``` -vi /etc/docker/daemon.json - -{ - "log-driver": "json-file", - "log-opts": { - "max-size": "100m" - } -} -``` - -### - -``` -vi /etc/docker/daemon.json - -{ - "exec-opts": ["native.cgroupdriver=systemd"], - "log-driver": "json-file", - "log-opts": { - "max-size": "100m" - }, - "insecure-registries": ["https://hub.menglong.com"] -} -``` - - -## 导入镜像文件 - -``` -cd /tmp/xNet/docker-images -for image in $(ls *.tar.gz); do - docker load < $image -done -``` \ No newline at end of file diff --git a/pre/docker/volumes/app/storage/upload_files/4b528185-e635-4a86-8813-158a71014efe/2cb6d778-6823-4278-9fc3-3d2e0d07677f.txt b/pre/docker/volumes/app/storage/upload_files/4b528185-e635-4a86-8813-158a71014efe/2cb6d778-6823-4278-9fc3-3d2e0d07677f.txt deleted file mode 100644 index b53cd80..0000000 --- a/pre/docker/volumes/app/storage/upload_files/4b528185-e635-4a86-8813-158a71014efe/2cb6d778-6823-4278-9fc3-3d2e0d07677f.txt +++ /dev/null @@ -1 +0,0 @@ -任江舟,1989年10月8日出生,身份证号410182198910082934 \ No newline at end of file diff --git a/pre/docker/volumes/app/storage/upload_files/4b528185-e635-4a86-8813-158a71014efe/3e316c4d-c15c-482c-8b2b-87db490488db.md b/pre/docker/volumes/app/storage/upload_files/4b528185-e635-4a86-8813-158a71014efe/3e316c4d-c15c-482c-8b2b-87db490488db.md deleted file mode 100644 index 325cfa5..0000000 --- a/pre/docker/volumes/app/storage/upload_files/4b528185-e635-4a86-8813-158a71014efe/3e316c4d-c15c-482c-8b2b-87db490488db.md +++ /dev/null @@ -1,128 +0,0 @@ -## docker环境部署 - - - -### 部署方式一:yum部署 - -1. 登陆至部署服务器 - - - -2. 执行以下命令 - - ```shell - yum update -y - ``` - - - -3. 安装docker - - ```shell - yum makecache - yum install -y docker-ce docker-ce-cli containerd.io - ``` - - - -4. 安装docker-compose - - ```shell - cd /tmp - wget https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64 - - mv docker-compose-linux-x86_64 /usr/bin/docker-compose - chmod +x /usr/bin/docker-compose - ``` - - - -### 部署方式二:离线部署 - -1. 如果3执行失败,执行以下命令进行安装(CentOS7.9已测试;) - - ```shell - mkdir -p /tmp/xNet - ``` - - - -2. 将rpms文件夹上传至服务器/tmp/xNet目录下,并执行以下命令安装docker、docker-compose - - ```shell - cd /tmp/xNet/rpms - rpm -Uvh --force --nodeps *.rpm - ``` - - - -### 检查docker安装结果 - -1. 检查docker安装结果 - - ```shell - systemctl daemon-reload - systemctl enable docker - systemctl start docker - systemctl status docker - ``` - - - -2. 检查docker版本 - - ```shell - docker version - ``` - - - -3. 检查docker-compose安装结果 - - ```shell - docker compose version - ``` - - - - -### 配置daemon.json - - -### 日志 - -``` -vi /etc/docker/daemon.json - -{ - "log-driver": "json-file", - "log-opts": { - "max-size": "100m" - } -} -``` - -### - -``` -vi /etc/docker/daemon.json - -{ - "exec-opts": ["native.cgroupdriver=systemd"], - "log-driver": "json-file", - "log-opts": { - "max-size": "100m" - }, - "insecure-registries": ["https://hub.menglong.com"] -} -``` - - -## 导入镜像文件 - -``` -cd /tmp/xNet/docker-images -for image in $(ls *.tar.gz); do - docker load < $image -done -``` \ No newline at end of file diff --git a/pre/docker/volumes/app/storage/upload_files/4b528185-e635-4a86-8813-158a71014efe/633810b8-6091-4b37-9dca-2a1a44353540.pdf b/pre/docker/volumes/app/storage/upload_files/4b528185-e635-4a86-8813-158a71014efe/633810b8-6091-4b37-9dca-2a1a44353540.pdf deleted file mode 100644 index a88d008..0000000 Binary files a/pre/docker/volumes/app/storage/upload_files/4b528185-e635-4a86-8813-158a71014efe/633810b8-6091-4b37-9dca-2a1a44353540.pdf and /dev/null differ diff --git a/pre/docker/volumes/app/storage/upload_files/4b528185-e635-4a86-8813-158a71014efe/689f0a39-f607-4d76-8239-671f8a30caf3.txt b/pre/docker/volumes/app/storage/upload_files/4b528185-e635-4a86-8813-158a71014efe/689f0a39-f607-4d76-8239-671f8a30caf3.txt deleted file mode 100644 index b53cd80..0000000 --- a/pre/docker/volumes/app/storage/upload_files/4b528185-e635-4a86-8813-158a71014efe/689f0a39-f607-4d76-8239-671f8a30caf3.txt +++ /dev/null @@ -1 +0,0 @@ -任江舟,1989年10月8日出生,身份证号410182198910082934 \ No newline at end of file diff --git a/pre/docker/volumes/db/data/pgdata/PG_VERSION b/pre/docker/volumes/db/data/pgdata/PG_VERSION deleted file mode 100644 index 60d3b2f..0000000 --- a/pre/docker/volumes/db/data/pgdata/PG_VERSION +++ /dev/null @@ -1 +0,0 @@ -15 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/112 b/pre/docker/volumes/db/data/pgdata/base/1/112 deleted file mode 100644 index 784a4c1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/112 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/113 b/pre/docker/volumes/db/data/pgdata/base/1/113 deleted file mode 100644 index cc2c412..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/113 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/1247 b/pre/docker/volumes/db/data/pgdata/base/1/1247 deleted file mode 100644 index 7334f8f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/1247 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/1247_fsm b/pre/docker/volumes/db/data/pgdata/base/1/1247_fsm deleted file mode 100644 index d9ff302..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/1247_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/1247_vm b/pre/docker/volumes/db/data/pgdata/base/1/1247_vm deleted file mode 100644 index 79164da..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/1247_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/1249 b/pre/docker/volumes/db/data/pgdata/base/1/1249 deleted file mode 100644 index d03c7f7..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/1249 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/1249_fsm b/pre/docker/volumes/db/data/pgdata/base/1/1249_fsm deleted file mode 100644 index 87def57..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/1249_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/1249_vm b/pre/docker/volumes/db/data/pgdata/base/1/1249_vm deleted file mode 100644 index 960d107..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/1249_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/1255 b/pre/docker/volumes/db/data/pgdata/base/1/1255 deleted file mode 100644 index b55d7e5..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/1255 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/1255_fsm b/pre/docker/volumes/db/data/pgdata/base/1/1255_fsm deleted file mode 100644 index 5abeaaf..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/1255_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/1255_vm b/pre/docker/volumes/db/data/pgdata/base/1/1255_vm deleted file mode 100644 index 964a2f4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/1255_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/1259 b/pre/docker/volumes/db/data/pgdata/base/1/1259 deleted file mode 100644 index 3ace690..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/1259 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/1259_fsm b/pre/docker/volumes/db/data/pgdata/base/1/1259_fsm deleted file mode 100644 index bb60b30..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/1259_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/1259_vm b/pre/docker/volumes/db/data/pgdata/base/1/1259_vm deleted file mode 100644 index ecd6d00..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/1259_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/13436 b/pre/docker/volumes/db/data/pgdata/base/1/13436 deleted file mode 100644 index 3999484..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/13436 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/13436_fsm b/pre/docker/volumes/db/data/pgdata/base/1/13436_fsm deleted file mode 100644 index dff9611..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/13436_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/13436_vm b/pre/docker/volumes/db/data/pgdata/base/1/13436_vm deleted file mode 100644 index 8c7c7fa..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/13436_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/13439 b/pre/docker/volumes/db/data/pgdata/base/1/13439 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/13440 b/pre/docker/volumes/db/data/pgdata/base/1/13440 deleted file mode 100644 index ec37b03..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/13440 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/13441 b/pre/docker/volumes/db/data/pgdata/base/1/13441 deleted file mode 100644 index 281c6bb..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/13441 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/13441_fsm b/pre/docker/volumes/db/data/pgdata/base/1/13441_fsm deleted file mode 100644 index 70d16ce..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/13441_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/13441_vm b/pre/docker/volumes/db/data/pgdata/base/1/13441_vm deleted file mode 100644 index 7af7e21..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/13441_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/13444 b/pre/docker/volumes/db/data/pgdata/base/1/13444 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/13445 b/pre/docker/volumes/db/data/pgdata/base/1/13445 deleted file mode 100644 index f4bebf3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/13445 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/13446 b/pre/docker/volumes/db/data/pgdata/base/1/13446 deleted file mode 100644 index 4e6888c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/13446 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/13446_fsm b/pre/docker/volumes/db/data/pgdata/base/1/13446_fsm deleted file mode 100644 index d388044..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/13446_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/13446_vm b/pre/docker/volumes/db/data/pgdata/base/1/13446_vm deleted file mode 100644 index 08b51fd..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/13446_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/13449 b/pre/docker/volumes/db/data/pgdata/base/1/13449 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/13450 b/pre/docker/volumes/db/data/pgdata/base/1/13450 deleted file mode 100644 index 1127ac4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/13450 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/13451 b/pre/docker/volumes/db/data/pgdata/base/1/13451 deleted file mode 100644 index fbd871f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/13451 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/13451_fsm b/pre/docker/volumes/db/data/pgdata/base/1/13451_fsm deleted file mode 100644 index a836ddf..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/13451_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/13451_vm b/pre/docker/volumes/db/data/pgdata/base/1/13451_vm deleted file mode 100644 index 2ce6938..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/13451_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/13454 b/pre/docker/volumes/db/data/pgdata/base/1/13454 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/13455 b/pre/docker/volumes/db/data/pgdata/base/1/13455 deleted file mode 100644 index ec7333c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/13455 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/1417 b/pre/docker/volumes/db/data/pgdata/base/1/1417 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/1418 b/pre/docker/volumes/db/data/pgdata/base/1/1418 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/174 b/pre/docker/volumes/db/data/pgdata/base/1/174 deleted file mode 100644 index 2e4cc9f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/174 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/175 b/pre/docker/volumes/db/data/pgdata/base/1/175 deleted file mode 100644 index 15d51dd..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/175 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2187 b/pre/docker/volumes/db/data/pgdata/base/1/2187 deleted file mode 100644 index cf6377d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2187 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2224 b/pre/docker/volumes/db/data/pgdata/base/1/2224 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2228 b/pre/docker/volumes/db/data/pgdata/base/1/2228 deleted file mode 100644 index 738f259..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2228 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2328 b/pre/docker/volumes/db/data/pgdata/base/1/2328 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2336 b/pre/docker/volumes/db/data/pgdata/base/1/2336 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2337 b/pre/docker/volumes/db/data/pgdata/base/1/2337 deleted file mode 100644 index 105af49..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2337 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2579 b/pre/docker/volumes/db/data/pgdata/base/1/2579 deleted file mode 100644 index 408f92c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2579 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2600 b/pre/docker/volumes/db/data/pgdata/base/1/2600 deleted file mode 100644 index a1305d7..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2600 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2600_fsm b/pre/docker/volumes/db/data/pgdata/base/1/2600_fsm deleted file mode 100644 index b849084..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2600_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2600_vm b/pre/docker/volumes/db/data/pgdata/base/1/2600_vm deleted file mode 100644 index 5602ad8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2600_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2601 b/pre/docker/volumes/db/data/pgdata/base/1/2601 deleted file mode 100644 index d8001c8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2601 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2601_fsm b/pre/docker/volumes/db/data/pgdata/base/1/2601_fsm deleted file mode 100644 index d388044..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2601_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2601_vm b/pre/docker/volumes/db/data/pgdata/base/1/2601_vm deleted file mode 100644 index 10f4b77..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2601_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2602 b/pre/docker/volumes/db/data/pgdata/base/1/2602 deleted file mode 100644 index 4a27b0a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2602 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2602_fsm b/pre/docker/volumes/db/data/pgdata/base/1/2602_fsm deleted file mode 100644 index 23170d8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2602_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2602_vm b/pre/docker/volumes/db/data/pgdata/base/1/2602_vm deleted file mode 100644 index 690a9e0..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2602_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2603 b/pre/docker/volumes/db/data/pgdata/base/1/2603 deleted file mode 100644 index d511af5..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2603 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2603_fsm b/pre/docker/volumes/db/data/pgdata/base/1/2603_fsm deleted file mode 100644 index 949bd18..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2603_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2603_vm b/pre/docker/volumes/db/data/pgdata/base/1/2603_vm deleted file mode 100644 index 0a8338b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2603_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2604 b/pre/docker/volumes/db/data/pgdata/base/1/2604 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2605 b/pre/docker/volumes/db/data/pgdata/base/1/2605 deleted file mode 100644 index eeaa7ea..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2605 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2605_fsm b/pre/docker/volumes/db/data/pgdata/base/1/2605_fsm deleted file mode 100644 index f3b92bf..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2605_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2605_vm b/pre/docker/volumes/db/data/pgdata/base/1/2605_vm deleted file mode 100644 index 797bf33..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2605_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2606 b/pre/docker/volumes/db/data/pgdata/base/1/2606 deleted file mode 100644 index fbbb275..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2606 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2606_fsm b/pre/docker/volumes/db/data/pgdata/base/1/2606_fsm deleted file mode 100644 index 286dd81..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2606_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2606_vm b/pre/docker/volumes/db/data/pgdata/base/1/2606_vm deleted file mode 100644 index 5e8add1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2606_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2607 b/pre/docker/volumes/db/data/pgdata/base/1/2607 deleted file mode 100644 index bfad49a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2607 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2607_fsm b/pre/docker/volumes/db/data/pgdata/base/1/2607_fsm deleted file mode 100644 index 80ac8b1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2607_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2607_vm b/pre/docker/volumes/db/data/pgdata/base/1/2607_vm deleted file mode 100644 index ddb51bf..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2607_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2608 b/pre/docker/volumes/db/data/pgdata/base/1/2608 deleted file mode 100644 index afabc7e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2608 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2608_fsm b/pre/docker/volumes/db/data/pgdata/base/1/2608_fsm deleted file mode 100644 index 6ba89a4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2608_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2608_vm b/pre/docker/volumes/db/data/pgdata/base/1/2608_vm deleted file mode 100644 index 64dd4f8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2608_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2609 b/pre/docker/volumes/db/data/pgdata/base/1/2609 deleted file mode 100644 index 5138991..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2609 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2609_fsm b/pre/docker/volumes/db/data/pgdata/base/1/2609_fsm deleted file mode 100644 index 719a2c0..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2609_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2609_vm b/pre/docker/volumes/db/data/pgdata/base/1/2609_vm deleted file mode 100644 index 8ee8cae..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2609_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2610 b/pre/docker/volumes/db/data/pgdata/base/1/2610 deleted file mode 100644 index bacd316..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2610 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2610_fsm b/pre/docker/volumes/db/data/pgdata/base/1/2610_fsm deleted file mode 100644 index dbd22e1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2610_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2610_vm b/pre/docker/volumes/db/data/pgdata/base/1/2610_vm deleted file mode 100644 index c2d0be8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2610_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2611 b/pre/docker/volumes/db/data/pgdata/base/1/2611 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2612 b/pre/docker/volumes/db/data/pgdata/base/1/2612 deleted file mode 100644 index fb146ae..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2612 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2612_fsm b/pre/docker/volumes/db/data/pgdata/base/1/2612_fsm deleted file mode 100644 index 877976a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2612_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2612_vm b/pre/docker/volumes/db/data/pgdata/base/1/2612_vm deleted file mode 100644 index 343c8b8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2612_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2613 b/pre/docker/volumes/db/data/pgdata/base/1/2613 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2615 b/pre/docker/volumes/db/data/pgdata/base/1/2615 deleted file mode 100644 index 8eee470..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2615 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2615_fsm b/pre/docker/volumes/db/data/pgdata/base/1/2615_fsm deleted file mode 100644 index d041693..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2615_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2615_vm b/pre/docker/volumes/db/data/pgdata/base/1/2615_vm deleted file mode 100644 index 095a59a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2615_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2616 b/pre/docker/volumes/db/data/pgdata/base/1/2616 deleted file mode 100644 index 0d60d79..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2616 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2616_fsm b/pre/docker/volumes/db/data/pgdata/base/1/2616_fsm deleted file mode 100644 index cb924c9..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2616_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2616_vm b/pre/docker/volumes/db/data/pgdata/base/1/2616_vm deleted file mode 100644 index 248cc84..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2616_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2617 b/pre/docker/volumes/db/data/pgdata/base/1/2617 deleted file mode 100644 index bcdfc18..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2617 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2617_fsm b/pre/docker/volumes/db/data/pgdata/base/1/2617_fsm deleted file mode 100644 index 29d6066..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2617_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2617_vm b/pre/docker/volumes/db/data/pgdata/base/1/2617_vm deleted file mode 100644 index 2bc2a76..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2617_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2618 b/pre/docker/volumes/db/data/pgdata/base/1/2618 deleted file mode 100644 index bc86a25..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2618 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2618_fsm b/pre/docker/volumes/db/data/pgdata/base/1/2618_fsm deleted file mode 100644 index ea506fe..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2618_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2618_vm b/pre/docker/volumes/db/data/pgdata/base/1/2618_vm deleted file mode 100644 index 94fd479..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2618_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2619 b/pre/docker/volumes/db/data/pgdata/base/1/2619 deleted file mode 100644 index 5a3bac8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2619 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2619_fsm b/pre/docker/volumes/db/data/pgdata/base/1/2619_fsm deleted file mode 100644 index 699b550..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2619_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2619_vm b/pre/docker/volumes/db/data/pgdata/base/1/2619_vm deleted file mode 100644 index 1565370..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2619_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2620 b/pre/docker/volumes/db/data/pgdata/base/1/2620 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2650 b/pre/docker/volumes/db/data/pgdata/base/1/2650 deleted file mode 100644 index 32ff8a1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2650 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2651 b/pre/docker/volumes/db/data/pgdata/base/1/2651 deleted file mode 100644 index cff86c7..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2651 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2652 b/pre/docker/volumes/db/data/pgdata/base/1/2652 deleted file mode 100644 index ab53706..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2652 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2653 b/pre/docker/volumes/db/data/pgdata/base/1/2653 deleted file mode 100644 index 86b0857..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2653 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2654 b/pre/docker/volumes/db/data/pgdata/base/1/2654 deleted file mode 100644 index 095a4fd..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2654 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2655 b/pre/docker/volumes/db/data/pgdata/base/1/2655 deleted file mode 100644 index 4b4b3cc..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2655 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2656 b/pre/docker/volumes/db/data/pgdata/base/1/2656 deleted file mode 100644 index 2fd9a71..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2656 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2657 b/pre/docker/volumes/db/data/pgdata/base/1/2657 deleted file mode 100644 index d0384dc..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2657 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2658 b/pre/docker/volumes/db/data/pgdata/base/1/2658 deleted file mode 100644 index 95a670a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2658 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2659 b/pre/docker/volumes/db/data/pgdata/base/1/2659 deleted file mode 100644 index 69c0b91..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2659 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2660 b/pre/docker/volumes/db/data/pgdata/base/1/2660 deleted file mode 100644 index fd66d22..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2660 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2661 b/pre/docker/volumes/db/data/pgdata/base/1/2661 deleted file mode 100644 index 3c62a6f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2661 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2662 b/pre/docker/volumes/db/data/pgdata/base/1/2662 deleted file mode 100644 index ba5df25..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2662 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2663 b/pre/docker/volumes/db/data/pgdata/base/1/2663 deleted file mode 100644 index e32f3b7..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2663 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2664 b/pre/docker/volumes/db/data/pgdata/base/1/2664 deleted file mode 100644 index ddc13e6..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2664 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2665 b/pre/docker/volumes/db/data/pgdata/base/1/2665 deleted file mode 100644 index 47894d3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2665 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2666 b/pre/docker/volumes/db/data/pgdata/base/1/2666 deleted file mode 100644 index fb71d0f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2666 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2667 b/pre/docker/volumes/db/data/pgdata/base/1/2667 deleted file mode 100644 index 36ec8bf..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2667 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2668 b/pre/docker/volumes/db/data/pgdata/base/1/2668 deleted file mode 100644 index 8ca1619..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2668 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2669 b/pre/docker/volumes/db/data/pgdata/base/1/2669 deleted file mode 100644 index b13c335..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2669 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2670 b/pre/docker/volumes/db/data/pgdata/base/1/2670 deleted file mode 100644 index 936feee..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2670 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2673 b/pre/docker/volumes/db/data/pgdata/base/1/2673 deleted file mode 100644 index 7e8ede8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2673 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2674 b/pre/docker/volumes/db/data/pgdata/base/1/2674 deleted file mode 100644 index ed27dfa..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2674 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2675 b/pre/docker/volumes/db/data/pgdata/base/1/2675 deleted file mode 100644 index f6aa99b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2675 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2678 b/pre/docker/volumes/db/data/pgdata/base/1/2678 deleted file mode 100644 index bfa546b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2678 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2679 b/pre/docker/volumes/db/data/pgdata/base/1/2679 deleted file mode 100644 index f93ede4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2679 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2680 b/pre/docker/volumes/db/data/pgdata/base/1/2680 deleted file mode 100644 index 0d352e9..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2680 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2681 b/pre/docker/volumes/db/data/pgdata/base/1/2681 deleted file mode 100644 index 1d1ec0d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2681 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2682 b/pre/docker/volumes/db/data/pgdata/base/1/2682 deleted file mode 100644 index 080bdb7..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2682 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2683 b/pre/docker/volumes/db/data/pgdata/base/1/2683 deleted file mode 100644 index 117ee7a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2683 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2684 b/pre/docker/volumes/db/data/pgdata/base/1/2684 deleted file mode 100644 index 657a2d2..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2684 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2685 b/pre/docker/volumes/db/data/pgdata/base/1/2685 deleted file mode 100644 index 38bcf1e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2685 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2686 b/pre/docker/volumes/db/data/pgdata/base/1/2686 deleted file mode 100644 index 3054a56..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2686 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2687 b/pre/docker/volumes/db/data/pgdata/base/1/2687 deleted file mode 100644 index 349490e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2687 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2688 b/pre/docker/volumes/db/data/pgdata/base/1/2688 deleted file mode 100644 index f00cec2..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2688 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2689 b/pre/docker/volumes/db/data/pgdata/base/1/2689 deleted file mode 100644 index 8329829..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2689 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2690 b/pre/docker/volumes/db/data/pgdata/base/1/2690 deleted file mode 100644 index 6fd86cd..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2690 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2691 b/pre/docker/volumes/db/data/pgdata/base/1/2691 deleted file mode 100644 index 15fd7ec..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2691 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2692 b/pre/docker/volumes/db/data/pgdata/base/1/2692 deleted file mode 100644 index b326e70..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2692 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2693 b/pre/docker/volumes/db/data/pgdata/base/1/2693 deleted file mode 100644 index 0fea372..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2693 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2696 b/pre/docker/volumes/db/data/pgdata/base/1/2696 deleted file mode 100644 index b874a80..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2696 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2699 b/pre/docker/volumes/db/data/pgdata/base/1/2699 deleted file mode 100644 index 4a75520..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2699 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2701 b/pre/docker/volumes/db/data/pgdata/base/1/2701 deleted file mode 100644 index 82f5cd0..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2701 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2702 b/pre/docker/volumes/db/data/pgdata/base/1/2702 deleted file mode 100644 index 2d6a98c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2702 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2703 b/pre/docker/volumes/db/data/pgdata/base/1/2703 deleted file mode 100644 index 80744cf..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2703 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2704 b/pre/docker/volumes/db/data/pgdata/base/1/2704 deleted file mode 100644 index b1a80a9..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2704 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2753 b/pre/docker/volumes/db/data/pgdata/base/1/2753 deleted file mode 100644 index 3c16dff..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2753 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2753_fsm b/pre/docker/volumes/db/data/pgdata/base/1/2753_fsm deleted file mode 100644 index 642bce3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2753_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2753_vm b/pre/docker/volumes/db/data/pgdata/base/1/2753_vm deleted file mode 100644 index 0c0c4ec..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2753_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2754 b/pre/docker/volumes/db/data/pgdata/base/1/2754 deleted file mode 100644 index bdd4d52..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2754 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2755 b/pre/docker/volumes/db/data/pgdata/base/1/2755 deleted file mode 100644 index fd5d56a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2755 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2756 b/pre/docker/volumes/db/data/pgdata/base/1/2756 deleted file mode 100644 index 6a04474..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2756 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2757 b/pre/docker/volumes/db/data/pgdata/base/1/2757 deleted file mode 100644 index 8f9ccdf..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2757 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2830 b/pre/docker/volumes/db/data/pgdata/base/1/2830 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2831 b/pre/docker/volumes/db/data/pgdata/base/1/2831 deleted file mode 100644 index c0a407a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2831 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2832 b/pre/docker/volumes/db/data/pgdata/base/1/2832 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2833 b/pre/docker/volumes/db/data/pgdata/base/1/2833 deleted file mode 100644 index eea5df6..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2833 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2834 b/pre/docker/volumes/db/data/pgdata/base/1/2834 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2835 b/pre/docker/volumes/db/data/pgdata/base/1/2835 deleted file mode 100644 index 8aad135..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2835 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2836 b/pre/docker/volumes/db/data/pgdata/base/1/2836 deleted file mode 100644 index dfc3e5f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2836 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2836_fsm b/pre/docker/volumes/db/data/pgdata/base/1/2836_fsm deleted file mode 100644 index 6e81497..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2836_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2836_vm b/pre/docker/volumes/db/data/pgdata/base/1/2836_vm deleted file mode 100644 index c3e953d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2836_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2837 b/pre/docker/volumes/db/data/pgdata/base/1/2837 deleted file mode 100644 index 296554c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2837 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2838 b/pre/docker/volumes/db/data/pgdata/base/1/2838 deleted file mode 100644 index a87cdad..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2838 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2838_fsm b/pre/docker/volumes/db/data/pgdata/base/1/2838_fsm deleted file mode 100644 index 3bdb4f0..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2838_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2838_vm b/pre/docker/volumes/db/data/pgdata/base/1/2838_vm deleted file mode 100644 index a866243..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2838_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2839 b/pre/docker/volumes/db/data/pgdata/base/1/2839 deleted file mode 100644 index d56632d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2839 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2840 b/pre/docker/volumes/db/data/pgdata/base/1/2840 deleted file mode 100644 index ecc2fef..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2840 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2840_fsm b/pre/docker/volumes/db/data/pgdata/base/1/2840_fsm deleted file mode 100644 index 4ad3025..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2840_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2840_vm b/pre/docker/volumes/db/data/pgdata/base/1/2840_vm deleted file mode 100644 index f028fd4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2840_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2841 b/pre/docker/volumes/db/data/pgdata/base/1/2841 deleted file mode 100644 index 856f8f3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2841 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2995 b/pre/docker/volumes/db/data/pgdata/base/1/2995 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/2996 b/pre/docker/volumes/db/data/pgdata/base/1/2996 deleted file mode 100644 index 170333a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/2996 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3079 b/pre/docker/volumes/db/data/pgdata/base/1/3079 deleted file mode 100644 index f4049e3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3079 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3079_fsm b/pre/docker/volumes/db/data/pgdata/base/1/3079_fsm deleted file mode 100644 index 7732d22..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3079_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3079_vm b/pre/docker/volumes/db/data/pgdata/base/1/3079_vm deleted file mode 100644 index 301e78d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3079_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3080 b/pre/docker/volumes/db/data/pgdata/base/1/3080 deleted file mode 100644 index 7995abc..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3080 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3081 b/pre/docker/volumes/db/data/pgdata/base/1/3081 deleted file mode 100644 index ac634c2..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3081 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3085 b/pre/docker/volumes/db/data/pgdata/base/1/3085 deleted file mode 100644 index 83ad586..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3085 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3118 b/pre/docker/volumes/db/data/pgdata/base/1/3118 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3119 b/pre/docker/volumes/db/data/pgdata/base/1/3119 deleted file mode 100644 index db2bde0..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3119 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3164 b/pre/docker/volumes/db/data/pgdata/base/1/3164 deleted file mode 100644 index 4e8d798..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3164 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3256 b/pre/docker/volumes/db/data/pgdata/base/1/3256 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3257 b/pre/docker/volumes/db/data/pgdata/base/1/3257 deleted file mode 100644 index 64787da..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3257 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3258 b/pre/docker/volumes/db/data/pgdata/base/1/3258 deleted file mode 100644 index 09abe9b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3258 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3350 b/pre/docker/volumes/db/data/pgdata/base/1/3350 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3351 b/pre/docker/volumes/db/data/pgdata/base/1/3351 deleted file mode 100644 index 2bfef7f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3351 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3379 b/pre/docker/volumes/db/data/pgdata/base/1/3379 deleted file mode 100644 index caced87..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3379 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3380 b/pre/docker/volumes/db/data/pgdata/base/1/3380 deleted file mode 100644 index 55d6862..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3380 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3381 b/pre/docker/volumes/db/data/pgdata/base/1/3381 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3394 b/pre/docker/volumes/db/data/pgdata/base/1/3394 deleted file mode 100644 index 65482bf..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3394 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3394_fsm b/pre/docker/volumes/db/data/pgdata/base/1/3394_fsm deleted file mode 100644 index 9622a2f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3394_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3394_vm b/pre/docker/volumes/db/data/pgdata/base/1/3394_vm deleted file mode 100644 index de1d3e3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3394_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3395 b/pre/docker/volumes/db/data/pgdata/base/1/3395 deleted file mode 100644 index db3a504..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3395 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3429 b/pre/docker/volumes/db/data/pgdata/base/1/3429 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3430 b/pre/docker/volumes/db/data/pgdata/base/1/3430 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3431 b/pre/docker/volumes/db/data/pgdata/base/1/3431 deleted file mode 100644 index ce872ee..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3431 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3433 b/pre/docker/volumes/db/data/pgdata/base/1/3433 deleted file mode 100644 index 68ea223..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3433 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3439 b/pre/docker/volumes/db/data/pgdata/base/1/3439 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3440 b/pre/docker/volumes/db/data/pgdata/base/1/3440 deleted file mode 100644 index 0545e4b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3440 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3455 b/pre/docker/volumes/db/data/pgdata/base/1/3455 deleted file mode 100644 index fdccb1d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3455 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3456 b/pre/docker/volumes/db/data/pgdata/base/1/3456 deleted file mode 100644 index 3cbe2c4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3456 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3456_fsm b/pre/docker/volumes/db/data/pgdata/base/1/3456_fsm deleted file mode 100644 index 43f3901..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3456_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3456_vm b/pre/docker/volumes/db/data/pgdata/base/1/3456_vm deleted file mode 100644 index 74839d9..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3456_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3466 b/pre/docker/volumes/db/data/pgdata/base/1/3466 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3467 b/pre/docker/volumes/db/data/pgdata/base/1/3467 deleted file mode 100644 index c7016e1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3467 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3468 b/pre/docker/volumes/db/data/pgdata/base/1/3468 deleted file mode 100644 index fab333b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3468 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3501 b/pre/docker/volumes/db/data/pgdata/base/1/3501 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3502 b/pre/docker/volumes/db/data/pgdata/base/1/3502 deleted file mode 100644 index ece495c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3502 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3503 b/pre/docker/volumes/db/data/pgdata/base/1/3503 deleted file mode 100644 index 53f9b69..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3503 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3534 b/pre/docker/volumes/db/data/pgdata/base/1/3534 deleted file mode 100644 index 11fad3b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3534 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3541 b/pre/docker/volumes/db/data/pgdata/base/1/3541 deleted file mode 100644 index 40869ad..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3541 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3541_fsm b/pre/docker/volumes/db/data/pgdata/base/1/3541_fsm deleted file mode 100644 index a3a2de4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3541_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3541_vm b/pre/docker/volumes/db/data/pgdata/base/1/3541_vm deleted file mode 100644 index ff0a4fc..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3541_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3542 b/pre/docker/volumes/db/data/pgdata/base/1/3542 deleted file mode 100644 index ced0066..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3542 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3574 b/pre/docker/volumes/db/data/pgdata/base/1/3574 deleted file mode 100644 index b026df1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3574 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3575 b/pre/docker/volumes/db/data/pgdata/base/1/3575 deleted file mode 100644 index bdec532..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3575 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3576 b/pre/docker/volumes/db/data/pgdata/base/1/3576 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3596 b/pre/docker/volumes/db/data/pgdata/base/1/3596 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3597 b/pre/docker/volumes/db/data/pgdata/base/1/3597 deleted file mode 100644 index 08855a4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3597 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3598 b/pre/docker/volumes/db/data/pgdata/base/1/3598 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3599 b/pre/docker/volumes/db/data/pgdata/base/1/3599 deleted file mode 100644 index aaf3892..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3599 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3600 b/pre/docker/volumes/db/data/pgdata/base/1/3600 deleted file mode 100644 index 759a39d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3600 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3600_fsm b/pre/docker/volumes/db/data/pgdata/base/1/3600_fsm deleted file mode 100644 index cebec19..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3600_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3600_vm b/pre/docker/volumes/db/data/pgdata/base/1/3600_vm deleted file mode 100644 index a495b35..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3600_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3601 b/pre/docker/volumes/db/data/pgdata/base/1/3601 deleted file mode 100644 index 04c846e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3601 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3601_fsm b/pre/docker/volumes/db/data/pgdata/base/1/3601_fsm deleted file mode 100644 index 7732d22..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3601_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3601_vm b/pre/docker/volumes/db/data/pgdata/base/1/3601_vm deleted file mode 100644 index a8fb488..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3601_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3602 b/pre/docker/volumes/db/data/pgdata/base/1/3602 deleted file mode 100644 index 3d10dee..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3602 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3602_fsm b/pre/docker/volumes/db/data/pgdata/base/1/3602_fsm deleted file mode 100644 index d7897de..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3602_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3602_vm b/pre/docker/volumes/db/data/pgdata/base/1/3602_vm deleted file mode 100644 index 237f075..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3602_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3603 b/pre/docker/volumes/db/data/pgdata/base/1/3603 deleted file mode 100644 index 0cac665..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3603 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3603_fsm b/pre/docker/volumes/db/data/pgdata/base/1/3603_fsm deleted file mode 100644 index c28dd4f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3603_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3603_vm b/pre/docker/volumes/db/data/pgdata/base/1/3603_vm deleted file mode 100644 index 25fec69..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3603_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3604 b/pre/docker/volumes/db/data/pgdata/base/1/3604 deleted file mode 100644 index 763dfd0..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3604 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3605 b/pre/docker/volumes/db/data/pgdata/base/1/3605 deleted file mode 100644 index a30b070..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3605 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3606 b/pre/docker/volumes/db/data/pgdata/base/1/3606 deleted file mode 100644 index abe7a1c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3606 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3607 b/pre/docker/volumes/db/data/pgdata/base/1/3607 deleted file mode 100644 index e3a3bbc..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3607 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3608 b/pre/docker/volumes/db/data/pgdata/base/1/3608 deleted file mode 100644 index 1e7673b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3608 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3609 b/pre/docker/volumes/db/data/pgdata/base/1/3609 deleted file mode 100644 index 1fd5845..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3609 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3712 b/pre/docker/volumes/db/data/pgdata/base/1/3712 deleted file mode 100644 index 6d3b145..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3712 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3764 b/pre/docker/volumes/db/data/pgdata/base/1/3764 deleted file mode 100644 index 61e4c75..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3764 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3764_fsm b/pre/docker/volumes/db/data/pgdata/base/1/3764_fsm deleted file mode 100644 index f64db4d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3764_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3764_vm b/pre/docker/volumes/db/data/pgdata/base/1/3764_vm deleted file mode 100644 index 9f6161e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3764_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3766 b/pre/docker/volumes/db/data/pgdata/base/1/3766 deleted file mode 100644 index d2ee302..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3766 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3767 b/pre/docker/volumes/db/data/pgdata/base/1/3767 deleted file mode 100644 index 07b30e9..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3767 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/3997 b/pre/docker/volumes/db/data/pgdata/base/1/3997 deleted file mode 100644 index 8969d81..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/3997 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/4143 b/pre/docker/volumes/db/data/pgdata/base/1/4143 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/4144 b/pre/docker/volumes/db/data/pgdata/base/1/4144 deleted file mode 100644 index 5188a14..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/4144 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/4145 b/pre/docker/volumes/db/data/pgdata/base/1/4145 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/4146 b/pre/docker/volumes/db/data/pgdata/base/1/4146 deleted file mode 100644 index 957732f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/4146 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/4147 b/pre/docker/volumes/db/data/pgdata/base/1/4147 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/4148 b/pre/docker/volumes/db/data/pgdata/base/1/4148 deleted file mode 100644 index 9c7057c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/4148 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/4149 b/pre/docker/volumes/db/data/pgdata/base/1/4149 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/4150 b/pre/docker/volumes/db/data/pgdata/base/1/4150 deleted file mode 100644 index 390d428..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/4150 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/4151 b/pre/docker/volumes/db/data/pgdata/base/1/4151 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/4152 b/pre/docker/volumes/db/data/pgdata/base/1/4152 deleted file mode 100644 index 1a289fd..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/4152 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/4153 b/pre/docker/volumes/db/data/pgdata/base/1/4153 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/4154 b/pre/docker/volumes/db/data/pgdata/base/1/4154 deleted file mode 100644 index d0d1ca5..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/4154 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/4155 b/pre/docker/volumes/db/data/pgdata/base/1/4155 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/4156 b/pre/docker/volumes/db/data/pgdata/base/1/4156 deleted file mode 100644 index 5b4bf37..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/4156 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/4157 b/pre/docker/volumes/db/data/pgdata/base/1/4157 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/4158 b/pre/docker/volumes/db/data/pgdata/base/1/4158 deleted file mode 100644 index 937d3d2..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/4158 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/4159 b/pre/docker/volumes/db/data/pgdata/base/1/4159 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/4160 b/pre/docker/volumes/db/data/pgdata/base/1/4160 deleted file mode 100644 index d10cfd6..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/4160 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/4163 b/pre/docker/volumes/db/data/pgdata/base/1/4163 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/4164 b/pre/docker/volumes/db/data/pgdata/base/1/4164 deleted file mode 100644 index a94c963..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/4164 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/4165 b/pre/docker/volumes/db/data/pgdata/base/1/4165 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/4166 b/pre/docker/volumes/db/data/pgdata/base/1/4166 deleted file mode 100644 index 2229586..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/4166 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/4167 b/pre/docker/volumes/db/data/pgdata/base/1/4167 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/4168 b/pre/docker/volumes/db/data/pgdata/base/1/4168 deleted file mode 100644 index 472740b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/4168 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/4169 b/pre/docker/volumes/db/data/pgdata/base/1/4169 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/4170 b/pre/docker/volumes/db/data/pgdata/base/1/4170 deleted file mode 100644 index 88d09b3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/4170 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/4171 b/pre/docker/volumes/db/data/pgdata/base/1/4171 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/4172 b/pre/docker/volumes/db/data/pgdata/base/1/4172 deleted file mode 100644 index 3eed1ee..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/4172 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/4173 b/pre/docker/volumes/db/data/pgdata/base/1/4173 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/4174 b/pre/docker/volumes/db/data/pgdata/base/1/4174 deleted file mode 100644 index a0819a2..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/4174 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/5002 b/pre/docker/volumes/db/data/pgdata/base/1/5002 deleted file mode 100644 index aefa40d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/5002 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/548 b/pre/docker/volumes/db/data/pgdata/base/1/548 deleted file mode 100644 index 7c6567d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/548 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/549 b/pre/docker/volumes/db/data/pgdata/base/1/549 deleted file mode 100644 index 26a3887..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/549 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/6102 b/pre/docker/volumes/db/data/pgdata/base/1/6102 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/6104 b/pre/docker/volumes/db/data/pgdata/base/1/6104 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/6106 b/pre/docker/volumes/db/data/pgdata/base/1/6106 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/6110 b/pre/docker/volumes/db/data/pgdata/base/1/6110 deleted file mode 100644 index 42e1920..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/6110 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/6111 b/pre/docker/volumes/db/data/pgdata/base/1/6111 deleted file mode 100644 index d012727..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/6111 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/6112 b/pre/docker/volumes/db/data/pgdata/base/1/6112 deleted file mode 100644 index 293367c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/6112 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/6113 b/pre/docker/volumes/db/data/pgdata/base/1/6113 deleted file mode 100644 index 542f8fa..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/6113 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/6116 b/pre/docker/volumes/db/data/pgdata/base/1/6116 deleted file mode 100644 index 787d5d1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/6116 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/6117 b/pre/docker/volumes/db/data/pgdata/base/1/6117 deleted file mode 100644 index 2b5656b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/6117 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/6175 b/pre/docker/volumes/db/data/pgdata/base/1/6175 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/6176 b/pre/docker/volumes/db/data/pgdata/base/1/6176 deleted file mode 100644 index bfd14df..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/6176 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/6228 b/pre/docker/volumes/db/data/pgdata/base/1/6228 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/6229 b/pre/docker/volumes/db/data/pgdata/base/1/6229 deleted file mode 100644 index 5d03213..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/6229 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/6237 b/pre/docker/volumes/db/data/pgdata/base/1/6237 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/6238 b/pre/docker/volumes/db/data/pgdata/base/1/6238 deleted file mode 100644 index e7c0e8c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/6238 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/6239 b/pre/docker/volumes/db/data/pgdata/base/1/6239 deleted file mode 100644 index 6c60b50..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/6239 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/826 b/pre/docker/volumes/db/data/pgdata/base/1/826 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/827 b/pre/docker/volumes/db/data/pgdata/base/1/827 deleted file mode 100644 index 94a900e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/827 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/828 b/pre/docker/volumes/db/data/pgdata/base/1/828 deleted file mode 100644 index ca30461..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/828 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/PG_VERSION b/pre/docker/volumes/db/data/pgdata/base/1/PG_VERSION deleted file mode 100644 index 60d3b2f..0000000 --- a/pre/docker/volumes/db/data/pgdata/base/1/PG_VERSION +++ /dev/null @@ -1 +0,0 @@ -15 diff --git a/pre/docker/volumes/db/data/pgdata/base/1/pg_filenode.map b/pre/docker/volumes/db/data/pgdata/base/1/pg_filenode.map deleted file mode 100644 index 193d78f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/pg_filenode.map and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/1/pg_internal.init b/pre/docker/volumes/db/data/pgdata/base/1/pg_internal.init deleted file mode 100644 index fa09e07..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/1/pg_internal.init and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/112 b/pre/docker/volumes/db/data/pgdata/base/16384/112 deleted file mode 100644 index e0cea26..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/112 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/113 b/pre/docker/volumes/db/data/pgdata/base/16384/113 deleted file mode 100644 index 0910c4f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/113 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/1247 b/pre/docker/volumes/db/data/pgdata/base/16384/1247 deleted file mode 100644 index d91b7ab..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/1247 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/1247_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/1247_fsm deleted file mode 100644 index b8553f1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/1247_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/1247_vm b/pre/docker/volumes/db/data/pgdata/base/16384/1247_vm deleted file mode 100644 index 59c94b5..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/1247_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/1249 b/pre/docker/volumes/db/data/pgdata/base/16384/1249 deleted file mode 100644 index b0cb424..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/1249 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/1249_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/1249_fsm deleted file mode 100644 index 347d719..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/1249_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/1249_vm b/pre/docker/volumes/db/data/pgdata/base/16384/1249_vm deleted file mode 100644 index cb0ee35..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/1249_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/1255 b/pre/docker/volumes/db/data/pgdata/base/16384/1255 deleted file mode 100644 index 1730c79..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/1255 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/1255_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/1255_fsm deleted file mode 100644 index 8c6d621..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/1255_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/1255_vm b/pre/docker/volumes/db/data/pgdata/base/16384/1255_vm deleted file mode 100644 index aa6822f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/1255_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/1259 b/pre/docker/volumes/db/data/pgdata/base/16384/1259 deleted file mode 100644 index c4189e5..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/1259 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/1259_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/1259_fsm deleted file mode 100644 index 6ad0699..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/1259_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/1259_vm b/pre/docker/volumes/db/data/pgdata/base/16384/1259_vm deleted file mode 100644 index 7eafde5..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/1259_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/13436 b/pre/docker/volumes/db/data/pgdata/base/16384/13436 deleted file mode 100644 index 90dedc8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/13436 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/13436_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/13436_fsm deleted file mode 100644 index 6dbc4e4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/13436_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/13436_vm b/pre/docker/volumes/db/data/pgdata/base/16384/13436_vm deleted file mode 100644 index c438d88..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/13436_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/13439 b/pre/docker/volumes/db/data/pgdata/base/16384/13439 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/13440 b/pre/docker/volumes/db/data/pgdata/base/16384/13440 deleted file mode 100644 index fad148a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/13440 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/13441 b/pre/docker/volumes/db/data/pgdata/base/16384/13441 deleted file mode 100644 index 17c00f1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/13441 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/13441_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/13441_fsm deleted file mode 100644 index 51a3b43..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/13441_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/13441_vm b/pre/docker/volumes/db/data/pgdata/base/16384/13441_vm deleted file mode 100644 index 1fa409d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/13441_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/13444 b/pre/docker/volumes/db/data/pgdata/base/16384/13444 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/13445 b/pre/docker/volumes/db/data/pgdata/base/16384/13445 deleted file mode 100644 index cb52ac8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/13445 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/13446 b/pre/docker/volumes/db/data/pgdata/base/16384/13446 deleted file mode 100644 index e4746b6..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/13446 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/13446_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/13446_fsm deleted file mode 100644 index 03052c8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/13446_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/13446_vm b/pre/docker/volumes/db/data/pgdata/base/16384/13446_vm deleted file mode 100644 index c3b9f66..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/13446_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/13449 b/pre/docker/volumes/db/data/pgdata/base/16384/13449 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/13450 b/pre/docker/volumes/db/data/pgdata/base/16384/13450 deleted file mode 100644 index 42c0025..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/13450 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/13451 b/pre/docker/volumes/db/data/pgdata/base/16384/13451 deleted file mode 100644 index a37c465..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/13451 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/13451_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/13451_fsm deleted file mode 100644 index ca71629..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/13451_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/13451_vm b/pre/docker/volumes/db/data/pgdata/base/16384/13451_vm deleted file mode 100644 index b436af7..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/13451_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/13454 b/pre/docker/volumes/db/data/pgdata/base/16384/13454 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/13455 b/pre/docker/volumes/db/data/pgdata/base/16384/13455 deleted file mode 100644 index eb06160..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/13455 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/1417 b/pre/docker/volumes/db/data/pgdata/base/16384/1417 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/1418 b/pre/docker/volumes/db/data/pgdata/base/16384/1418 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16389 b/pre/docker/volumes/db/data/pgdata/base/16384/16389 deleted file mode 100644 index c5eb644..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16389 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16389_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/16389_fsm deleted file mode 100644 index 877976a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16389_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16389_vm b/pre/docker/volumes/db/data/pgdata/base/16384/16389_vm deleted file mode 100644 index 6b0d7a2..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16389_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16392 b/pre/docker/volumes/db/data/pgdata/base/16384/16392 deleted file mode 100644 index 450131a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16392 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16405 b/pre/docker/volumes/db/data/pgdata/base/16384/16405 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16411 b/pre/docker/volumes/db/data/pgdata/base/16384/16411 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16412 b/pre/docker/volumes/db/data/pgdata/base/16384/16412 deleted file mode 100644 index 2625071..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16412 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16413 b/pre/docker/volumes/db/data/pgdata/base/16384/16413 deleted file mode 100644 index d10bcb0..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16413 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16415 b/pre/docker/volumes/db/data/pgdata/base/16384/16415 deleted file mode 100644 index cdf7076..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16415 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16417 b/pre/docker/volumes/db/data/pgdata/base/16384/16417 deleted file mode 100644 index 76ad5af..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16417 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16419 b/pre/docker/volumes/db/data/pgdata/base/16384/16419 deleted file mode 100644 index 7b3ff90..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16419 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16426 b/pre/docker/volumes/db/data/pgdata/base/16384/16426 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16427 b/pre/docker/volumes/db/data/pgdata/base/16384/16427 deleted file mode 100644 index 0cd010a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16427 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16428 b/pre/docker/volumes/db/data/pgdata/base/16384/16428 deleted file mode 100644 index 0ca5957..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16428 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16430 b/pre/docker/volumes/db/data/pgdata/base/16384/16430 deleted file mode 100644 index fdadd1b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16430 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16431 b/pre/docker/volumes/db/data/pgdata/base/16384/16431 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16436 b/pre/docker/volumes/db/data/pgdata/base/16384/16436 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16437 b/pre/docker/volumes/db/data/pgdata/base/16384/16437 deleted file mode 100644 index 456eee0..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16437 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16438 b/pre/docker/volumes/db/data/pgdata/base/16384/16438 deleted file mode 100644 index 91a5609..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16438 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16440 b/pre/docker/volumes/db/data/pgdata/base/16384/16440 deleted file mode 100644 index 50f5449..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16440 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16441 b/pre/docker/volumes/db/data/pgdata/base/16384/16441 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16446 b/pre/docker/volumes/db/data/pgdata/base/16384/16446 deleted file mode 100644 index 3fdd7be..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16446 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16448 b/pre/docker/volumes/db/data/pgdata/base/16384/16448 deleted file mode 100644 index 4b57815..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16448 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16449 b/pre/docker/volumes/db/data/pgdata/base/16384/16449 deleted file mode 100644 index cfddcc6..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16449 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16450 b/pre/docker/volumes/db/data/pgdata/base/16384/16450 deleted file mode 100644 index 30d387d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16450 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16455 b/pre/docker/volumes/db/data/pgdata/base/16384/16455 deleted file mode 100644 index 628ab0b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16455 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16457 b/pre/docker/volumes/db/data/pgdata/base/16384/16457 deleted file mode 100644 index 09da5d2..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16457 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16458 b/pre/docker/volumes/db/data/pgdata/base/16384/16458 deleted file mode 100644 index 519d653..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16458 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16464 b/pre/docker/volumes/db/data/pgdata/base/16384/16464 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16465 b/pre/docker/volumes/db/data/pgdata/base/16384/16465 deleted file mode 100644 index eba64f7..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16465 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16466 b/pre/docker/volumes/db/data/pgdata/base/16384/16466 deleted file mode 100644 index 5e7f8b1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16466 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16468 b/pre/docker/volumes/db/data/pgdata/base/16384/16468 deleted file mode 100644 index d4f1794..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16468 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16469 b/pre/docker/volumes/db/data/pgdata/base/16384/16469 deleted file mode 100644 index f1d7123..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16469 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16478 b/pre/docker/volumes/db/data/pgdata/base/16384/16478 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16479 b/pre/docker/volumes/db/data/pgdata/base/16384/16479 deleted file mode 100644 index 1a76cbd..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16479 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16480 b/pre/docker/volumes/db/data/pgdata/base/16384/16480 deleted file mode 100644 index 9ca0fda..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16480 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16482 b/pre/docker/volumes/db/data/pgdata/base/16384/16482 deleted file mode 100644 index 3ba14e0..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16482 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16483 b/pre/docker/volumes/db/data/pgdata/base/16384/16483 deleted file mode 100644 index c72192b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16483 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16484 b/pre/docker/volumes/db/data/pgdata/base/16384/16484 deleted file mode 100644 index 7fa3d33..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16484 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16485 b/pre/docker/volumes/db/data/pgdata/base/16384/16485 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16489 b/pre/docker/volumes/db/data/pgdata/base/16384/16489 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16490 b/pre/docker/volumes/db/data/pgdata/base/16384/16490 deleted file mode 100644 index a646ae1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16490 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16491 b/pre/docker/volumes/db/data/pgdata/base/16384/16491 deleted file mode 100644 index 8cd345d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16491 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16493 b/pre/docker/volumes/db/data/pgdata/base/16384/16493 deleted file mode 100644 index 384a435..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16493 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16495 b/pre/docker/volumes/db/data/pgdata/base/16384/16495 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16499 b/pre/docker/volumes/db/data/pgdata/base/16384/16499 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16500 b/pre/docker/volumes/db/data/pgdata/base/16384/16500 deleted file mode 100644 index 82bcf6f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16500 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16501 b/pre/docker/volumes/db/data/pgdata/base/16384/16501 deleted file mode 100644 index 1c1d3ac..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16501 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16503 b/pre/docker/volumes/db/data/pgdata/base/16384/16503 deleted file mode 100644 index da8169b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16503 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16505 b/pre/docker/volumes/db/data/pgdata/base/16384/16505 deleted file mode 100644 index 8ee3e13..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16505 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16505_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/16505_fsm deleted file mode 100644 index c3529c3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16505_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16512 b/pre/docker/volumes/db/data/pgdata/base/16384/16512 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16513 b/pre/docker/volumes/db/data/pgdata/base/16384/16513 deleted file mode 100644 index 67c60ed..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16513 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16514 b/pre/docker/volumes/db/data/pgdata/base/16384/16514 deleted file mode 100644 index e38f354..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16514 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16516 b/pre/docker/volumes/db/data/pgdata/base/16384/16516 deleted file mode 100644 index 980ea95..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16516 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16517 b/pre/docker/volumes/db/data/pgdata/base/16384/16517 deleted file mode 100644 index d259016..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16517 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16521 b/pre/docker/volumes/db/data/pgdata/base/16384/16521 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16521_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/16521_fsm deleted file mode 100644 index e8fae91..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16521_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16521_vm b/pre/docker/volumes/db/data/pgdata/base/16384/16521_vm deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16522 b/pre/docker/volumes/db/data/pgdata/base/16384/16522 deleted file mode 100644 index c482433..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16522 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16522_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/16522_fsm deleted file mode 100644 index 99242df..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16522_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16523 b/pre/docker/volumes/db/data/pgdata/base/16384/16523 deleted file mode 100644 index 6298321..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16523 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16525 b/pre/docker/volumes/db/data/pgdata/base/16384/16525 deleted file mode 100644 index 2b60440..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16525 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16527 b/pre/docker/volumes/db/data/pgdata/base/16384/16527 deleted file mode 100644 index b526110..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16527 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16528 b/pre/docker/volumes/db/data/pgdata/base/16384/16528 deleted file mode 100644 index 9d69b32..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16528 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16534 b/pre/docker/volumes/db/data/pgdata/base/16384/16534 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16535 b/pre/docker/volumes/db/data/pgdata/base/16384/16535 deleted file mode 100644 index c55f38f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16535 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16536 b/pre/docker/volumes/db/data/pgdata/base/16384/16536 deleted file mode 100644 index cb8cb7f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16536 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16538 b/pre/docker/volumes/db/data/pgdata/base/16384/16538 deleted file mode 100644 index 3452c43..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16538 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16539 b/pre/docker/volumes/db/data/pgdata/base/16384/16539 deleted file mode 100644 index 8f37b90..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16539 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16544 b/pre/docker/volumes/db/data/pgdata/base/16384/16544 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16545 b/pre/docker/volumes/db/data/pgdata/base/16384/16545 deleted file mode 100644 index 1db48d6..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16545 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16546 b/pre/docker/volumes/db/data/pgdata/base/16384/16546 deleted file mode 100644 index 0a9d43b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16546 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16548 b/pre/docker/volumes/db/data/pgdata/base/16384/16548 deleted file mode 100644 index 7bcb072..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16548 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16549 b/pre/docker/volumes/db/data/pgdata/base/16384/16549 deleted file mode 100644 index 2828fb6..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16549 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16557 b/pre/docker/volumes/db/data/pgdata/base/16384/16557 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16558 b/pre/docker/volumes/db/data/pgdata/base/16384/16558 deleted file mode 100644 index acbe70b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16558 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16559 b/pre/docker/volumes/db/data/pgdata/base/16384/16559 deleted file mode 100644 index ad98ad2..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16559 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16561 b/pre/docker/volumes/db/data/pgdata/base/16384/16561 deleted file mode 100644 index 161e5df..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16561 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16562 b/pre/docker/volumes/db/data/pgdata/base/16384/16562 deleted file mode 100644 index bb6060b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16562 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16566 b/pre/docker/volumes/db/data/pgdata/base/16384/16566 deleted file mode 100644 index eed7d98..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16566 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16568 b/pre/docker/volumes/db/data/pgdata/base/16384/16568 deleted file mode 100644 index db70e01..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16568 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16568_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/16568_fsm deleted file mode 100644 index a482da4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16568_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16568_vm b/pre/docker/volumes/db/data/pgdata/base/16384/16568_vm deleted file mode 100644 index d4f4ebc..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16568_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16575 b/pre/docker/volumes/db/data/pgdata/base/16384/16575 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16576 b/pre/docker/volumes/db/data/pgdata/base/16384/16576 deleted file mode 100644 index 3f32e8f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16576 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16577 b/pre/docker/volumes/db/data/pgdata/base/16384/16577 deleted file mode 100644 index 5553b46..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16577 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16577_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/16577_fsm deleted file mode 100644 index 38119cc..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16577_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16579 b/pre/docker/volumes/db/data/pgdata/base/16384/16579 deleted file mode 100644 index f54a46f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16579 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16579_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/16579_fsm deleted file mode 100644 index 99242df..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16579_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16580 b/pre/docker/volumes/db/data/pgdata/base/16384/16580 deleted file mode 100644 index 4b9555a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16580 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16580_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/16580_fsm deleted file mode 100644 index ce119ed..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16580_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16581 b/pre/docker/volumes/db/data/pgdata/base/16384/16581 deleted file mode 100644 index d6be424..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16581 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16581_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/16581_fsm deleted file mode 100644 index 99242df..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16581_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16582 b/pre/docker/volumes/db/data/pgdata/base/16384/16582 deleted file mode 100644 index 6e8053b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16582 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16582_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/16582_fsm deleted file mode 100644 index 99242df..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16582_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16583 b/pre/docker/volumes/db/data/pgdata/base/16384/16583 deleted file mode 100644 index 462824f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16583 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16583_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/16583_fsm deleted file mode 100644 index 99242df..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16583_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16584 b/pre/docker/volumes/db/data/pgdata/base/16384/16584 deleted file mode 100644 index c22741b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16584 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16594 b/pre/docker/volumes/db/data/pgdata/base/16384/16594 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16595 b/pre/docker/volumes/db/data/pgdata/base/16384/16595 deleted file mode 100644 index 587f7f5..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16595 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16596 b/pre/docker/volumes/db/data/pgdata/base/16384/16596 deleted file mode 100644 index d64d23e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16596 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16598 b/pre/docker/volumes/db/data/pgdata/base/16384/16598 deleted file mode 100644 index 7af9be3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16598 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16599 b/pre/docker/volumes/db/data/pgdata/base/16384/16599 deleted file mode 100644 index 6257fb3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16599 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16600 b/pre/docker/volumes/db/data/pgdata/base/16384/16600 deleted file mode 100644 index 91a1f81..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16600 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16600_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/16600_fsm deleted file mode 100644 index ba4b8c6..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16600_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16605 b/pre/docker/volumes/db/data/pgdata/base/16384/16605 deleted file mode 100644 index 0c9fb9d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16605 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16605_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/16605_fsm deleted file mode 100644 index 5260903..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16605_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16605_vm b/pre/docker/volumes/db/data/pgdata/base/16384/16605_vm deleted file mode 100644 index 30d2f2a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16605_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16606 b/pre/docker/volumes/db/data/pgdata/base/16384/16606 deleted file mode 100644 index c216589..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16606 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16607 b/pre/docker/volumes/db/data/pgdata/base/16384/16607 deleted file mode 100644 index 5010d87..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16607 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16611 b/pre/docker/volumes/db/data/pgdata/base/16384/16611 deleted file mode 100644 index a85cbc3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16611 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16618 b/pre/docker/volumes/db/data/pgdata/base/16384/16618 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16619 b/pre/docker/volumes/db/data/pgdata/base/16384/16619 deleted file mode 100644 index 2ac293b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16619 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16620 b/pre/docker/volumes/db/data/pgdata/base/16384/16620 deleted file mode 100644 index 354cad3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16620 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16622 b/pre/docker/volumes/db/data/pgdata/base/16384/16622 deleted file mode 100644 index 78a6edf..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16622 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16623 b/pre/docker/volumes/db/data/pgdata/base/16384/16623 deleted file mode 100644 index fe86b93..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16623 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16624 b/pre/docker/volumes/db/data/pgdata/base/16384/16624 deleted file mode 100644 index 374d30a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16624 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16630 b/pre/docker/volumes/db/data/pgdata/base/16384/16630 deleted file mode 100644 index dec98f4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16630 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16632 b/pre/docker/volumes/db/data/pgdata/base/16384/16632 deleted file mode 100644 index d3fdc29..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16632 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16634 b/pre/docker/volumes/db/data/pgdata/base/16384/16634 deleted file mode 100644 index 9ae9e13..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16634 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16635 b/pre/docker/volumes/db/data/pgdata/base/16384/16635 deleted file mode 100644 index 7a24bc4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16635 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16636 b/pre/docker/volumes/db/data/pgdata/base/16384/16636 deleted file mode 100644 index d2e607d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16636 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16637 b/pre/docker/volumes/db/data/pgdata/base/16384/16637 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16643 b/pre/docker/volumes/db/data/pgdata/base/16384/16643 deleted file mode 100644 index 469b889..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16643 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16645 b/pre/docker/volumes/db/data/pgdata/base/16384/16645 deleted file mode 100644 index 6d12244..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16645 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16646 b/pre/docker/volumes/db/data/pgdata/base/16384/16646 deleted file mode 100644 index a003910..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16646 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16647 b/pre/docker/volumes/db/data/pgdata/base/16384/16647 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16652 b/pre/docker/volumes/db/data/pgdata/base/16384/16652 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16653 b/pre/docker/volumes/db/data/pgdata/base/16384/16653 deleted file mode 100644 index d42fe66..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16653 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16654 b/pre/docker/volumes/db/data/pgdata/base/16384/16654 deleted file mode 100644 index b419e03..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16654 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16656 b/pre/docker/volumes/db/data/pgdata/base/16384/16656 deleted file mode 100644 index d562629..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16656 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16657 b/pre/docker/volumes/db/data/pgdata/base/16384/16657 deleted file mode 100644 index 5c8c74f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16657 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16658 b/pre/docker/volumes/db/data/pgdata/base/16384/16658 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16663 b/pre/docker/volumes/db/data/pgdata/base/16384/16663 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16664 b/pre/docker/volumes/db/data/pgdata/base/16384/16664 deleted file mode 100644 index 837fd50..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16664 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16665 b/pre/docker/volumes/db/data/pgdata/base/16384/16665 deleted file mode 100644 index 8b3636e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16665 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16667 b/pre/docker/volumes/db/data/pgdata/base/16384/16667 deleted file mode 100644 index 04d1a93..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16667 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16668 b/pre/docker/volumes/db/data/pgdata/base/16384/16668 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16674 b/pre/docker/volumes/db/data/pgdata/base/16384/16674 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16675 b/pre/docker/volumes/db/data/pgdata/base/16384/16675 deleted file mode 100644 index 6bcf7e0..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16675 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16676 b/pre/docker/volumes/db/data/pgdata/base/16384/16676 deleted file mode 100644 index 5655a6a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16676 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16678 b/pre/docker/volumes/db/data/pgdata/base/16384/16678 deleted file mode 100644 index 603dc51..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16678 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16679 b/pre/docker/volumes/db/data/pgdata/base/16384/16679 deleted file mode 100644 index fe1cc7a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16679 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16680 b/pre/docker/volumes/db/data/pgdata/base/16384/16680 deleted file mode 100644 index 8872e91..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16680 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16681 b/pre/docker/volumes/db/data/pgdata/base/16384/16681 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16687 b/pre/docker/volumes/db/data/pgdata/base/16384/16687 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16688 b/pre/docker/volumes/db/data/pgdata/base/16384/16688 deleted file mode 100644 index 9d99632..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16688 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16689 b/pre/docker/volumes/db/data/pgdata/base/16384/16689 deleted file mode 100644 index 5eded3a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16689 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16691 b/pre/docker/volumes/db/data/pgdata/base/16384/16691 deleted file mode 100644 index 9f8e963..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16691 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16692 b/pre/docker/volumes/db/data/pgdata/base/16384/16692 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16697 b/pre/docker/volumes/db/data/pgdata/base/16384/16697 deleted file mode 100644 index aecdf24..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16697 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16716 b/pre/docker/volumes/db/data/pgdata/base/16384/16716 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16722 b/pre/docker/volumes/db/data/pgdata/base/16384/16722 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16723 b/pre/docker/volumes/db/data/pgdata/base/16384/16723 deleted file mode 100644 index 188b8c9..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16723 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16724 b/pre/docker/volumes/db/data/pgdata/base/16384/16724 deleted file mode 100644 index 7719d90..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16724 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16726 b/pre/docker/volumes/db/data/pgdata/base/16384/16726 deleted file mode 100644 index e513926..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16726 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16728 b/pre/docker/volumes/db/data/pgdata/base/16384/16728 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16733 b/pre/docker/volumes/db/data/pgdata/base/16384/16733 deleted file mode 100644 index d4c92f9..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16733 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16747 b/pre/docker/volumes/db/data/pgdata/base/16384/16747 deleted file mode 100644 index 4db7985..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16747 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16755 b/pre/docker/volumes/db/data/pgdata/base/16384/16755 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16756 b/pre/docker/volumes/db/data/pgdata/base/16384/16756 deleted file mode 100644 index 58bc308..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16756 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16757 b/pre/docker/volumes/db/data/pgdata/base/16384/16757 deleted file mode 100644 index a4a222a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16757 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16759 b/pre/docker/volumes/db/data/pgdata/base/16384/16759 deleted file mode 100644 index de9e780..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16759 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16760 b/pre/docker/volumes/db/data/pgdata/base/16384/16760 deleted file mode 100644 index d64fd6a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16760 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16761 b/pre/docker/volumes/db/data/pgdata/base/16384/16761 deleted file mode 100644 index 290566e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16761 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16768 b/pre/docker/volumes/db/data/pgdata/base/16384/16768 deleted file mode 100644 index e0f975e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16768 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16770 b/pre/docker/volumes/db/data/pgdata/base/16384/16770 deleted file mode 100644 index d949fbc..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16770 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16772 b/pre/docker/volumes/db/data/pgdata/base/16384/16772 deleted file mode 100644 index 1acd299..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16772 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16773 b/pre/docker/volumes/db/data/pgdata/base/16384/16773 deleted file mode 100644 index 342e166..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16773 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16774 b/pre/docker/volumes/db/data/pgdata/base/16384/16774 deleted file mode 100644 index 6afd8c6..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16774 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16782 b/pre/docker/volumes/db/data/pgdata/base/16384/16782 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16783 b/pre/docker/volumes/db/data/pgdata/base/16384/16783 deleted file mode 100644 index e52dee1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16783 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16784 b/pre/docker/volumes/db/data/pgdata/base/16384/16784 deleted file mode 100644 index d0edb34..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16784 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16786 b/pre/docker/volumes/db/data/pgdata/base/16384/16786 deleted file mode 100644 index 6887cc5..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16786 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16792 b/pre/docker/volumes/db/data/pgdata/base/16384/16792 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16793 b/pre/docker/volumes/db/data/pgdata/base/16384/16793 deleted file mode 100644 index fc1c499..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16793 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16794 b/pre/docker/volumes/db/data/pgdata/base/16384/16794 deleted file mode 100644 index 0ab09d9..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16794 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16796 b/pre/docker/volumes/db/data/pgdata/base/16384/16796 deleted file mode 100644 index c0962a8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16796 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16797 b/pre/docker/volumes/db/data/pgdata/base/16384/16797 deleted file mode 100644 index 1472736..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16797 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16803 b/pre/docker/volumes/db/data/pgdata/base/16384/16803 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16804 b/pre/docker/volumes/db/data/pgdata/base/16384/16804 deleted file mode 100644 index 5f32e8e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16804 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16805 b/pre/docker/volumes/db/data/pgdata/base/16384/16805 deleted file mode 100644 index f0e1365..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16805 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16807 b/pre/docker/volumes/db/data/pgdata/base/16384/16807 deleted file mode 100644 index 535df6d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16807 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16808 b/pre/docker/volumes/db/data/pgdata/base/16384/16808 deleted file mode 100644 index f3e26f5..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16808 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16809 b/pre/docker/volumes/db/data/pgdata/base/16384/16809 deleted file mode 100644 index c70e026..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16809 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16810 b/pre/docker/volumes/db/data/pgdata/base/16384/16810 deleted file mode 100644 index fc40dd3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16810 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16810_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/16810_fsm deleted file mode 100644 index b3cddf2..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16810_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16820 b/pre/docker/volumes/db/data/pgdata/base/16384/16820 deleted file mode 100644 index 0766a83..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16820 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16820_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/16820_fsm deleted file mode 100644 index 7f5c3a7..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16820_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16821 b/pre/docker/volumes/db/data/pgdata/base/16384/16821 deleted file mode 100644 index e7daf72..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16821 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16822 b/pre/docker/volumes/db/data/pgdata/base/16384/16822 deleted file mode 100644 index 6cc8732..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16822 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16824 b/pre/docker/volumes/db/data/pgdata/base/16384/16824 deleted file mode 100644 index 724535a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16824 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16825 b/pre/docker/volumes/db/data/pgdata/base/16384/16825 deleted file mode 100644 index ef26597..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16825 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16826 b/pre/docker/volumes/db/data/pgdata/base/16384/16826 deleted file mode 100644 index c1c427d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16826 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16827 b/pre/docker/volumes/db/data/pgdata/base/16384/16827 deleted file mode 100644 index 602a93f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16827 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16829 b/pre/docker/volumes/db/data/pgdata/base/16384/16829 deleted file mode 100644 index 1171c6d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16829 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16831 b/pre/docker/volumes/db/data/pgdata/base/16384/16831 deleted file mode 100644 index 0329678..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16831 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16833 b/pre/docker/volumes/db/data/pgdata/base/16384/16833 deleted file mode 100644 index 6822eea..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16833 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16835 b/pre/docker/volumes/db/data/pgdata/base/16384/16835 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16842 b/pre/docker/volumes/db/data/pgdata/base/16384/16842 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16843 b/pre/docker/volumes/db/data/pgdata/base/16384/16843 deleted file mode 100644 index bb8c259..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16843 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16844 b/pre/docker/volumes/db/data/pgdata/base/16384/16844 deleted file mode 100644 index 90cab32..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16844 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16865 b/pre/docker/volumes/db/data/pgdata/base/16384/16865 deleted file mode 100644 index e332c74..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16865 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16872 b/pre/docker/volumes/db/data/pgdata/base/16384/16872 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16873 b/pre/docker/volumes/db/data/pgdata/base/16384/16873 deleted file mode 100644 index eb9111c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16873 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16874 b/pre/docker/volumes/db/data/pgdata/base/16384/16874 deleted file mode 100644 index 57cd912..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16874 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16876 b/pre/docker/volumes/db/data/pgdata/base/16384/16876 deleted file mode 100644 index 94ab4e7..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16876 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16878 b/pre/docker/volumes/db/data/pgdata/base/16384/16878 deleted file mode 100644 index 8dd90b2..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16878 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16879 b/pre/docker/volumes/db/data/pgdata/base/16384/16879 deleted file mode 100644 index a6fffd8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16879 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16885 b/pre/docker/volumes/db/data/pgdata/base/16384/16885 deleted file mode 100644 index 7f2f001..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16885 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16887 b/pre/docker/volumes/db/data/pgdata/base/16384/16887 deleted file mode 100644 index c95349e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16887 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16888 b/pre/docker/volumes/db/data/pgdata/base/16384/16888 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16894 b/pre/docker/volumes/db/data/pgdata/base/16384/16894 deleted file mode 100644 index 40996af..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16894 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16896 b/pre/docker/volumes/db/data/pgdata/base/16384/16896 deleted file mode 100644 index 7da5eeb..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16896 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16905 b/pre/docker/volumes/db/data/pgdata/base/16384/16905 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16908 b/pre/docker/volumes/db/data/pgdata/base/16384/16908 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16909 b/pre/docker/volumes/db/data/pgdata/base/16384/16909 deleted file mode 100644 index af06694..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16909 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16910 b/pre/docker/volumes/db/data/pgdata/base/16384/16910 deleted file mode 100644 index c2048ef..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16910 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16911 b/pre/docker/volumes/db/data/pgdata/base/16384/16911 deleted file mode 100644 index cd4001a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16911 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16912 b/pre/docker/volumes/db/data/pgdata/base/16384/16912 deleted file mode 100644 index 5a731f4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16912 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16913 b/pre/docker/volumes/db/data/pgdata/base/16384/16913 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16921 b/pre/docker/volumes/db/data/pgdata/base/16384/16921 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16922 b/pre/docker/volumes/db/data/pgdata/base/16384/16922 deleted file mode 100644 index b595c69..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16922 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16923 b/pre/docker/volumes/db/data/pgdata/base/16384/16923 deleted file mode 100644 index 3b67fb7..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16923 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16925 b/pre/docker/volumes/db/data/pgdata/base/16384/16925 deleted file mode 100644 index dc89bf4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16925 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16935 b/pre/docker/volumes/db/data/pgdata/base/16384/16935 deleted file mode 100644 index 0b3e35d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16935 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16935_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/16935_fsm deleted file mode 100644 index f3d4ef6..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16935_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16940 b/pre/docker/volumes/db/data/pgdata/base/16384/16940 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16941 b/pre/docker/volumes/db/data/pgdata/base/16384/16941 deleted file mode 100644 index 062cc2e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16941 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16942 b/pre/docker/volumes/db/data/pgdata/base/16384/16942 deleted file mode 100644 index ad1ab07..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16942 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16944 b/pre/docker/volumes/db/data/pgdata/base/16384/16944 deleted file mode 100644 index f32c9c0..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16944 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16945 b/pre/docker/volumes/db/data/pgdata/base/16384/16945 deleted file mode 100644 index 15ef99e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16945 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16950 b/pre/docker/volumes/db/data/pgdata/base/16384/16950 deleted file mode 100644 index 4e13f4c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16950 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16952 b/pre/docker/volumes/db/data/pgdata/base/16384/16952 deleted file mode 100644 index 0e8a6ff..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16952 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16953 b/pre/docker/volumes/db/data/pgdata/base/16384/16953 deleted file mode 100644 index 90085a9..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16953 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16955 b/pre/docker/volumes/db/data/pgdata/base/16384/16955 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16960 b/pre/docker/volumes/db/data/pgdata/base/16384/16960 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16961 b/pre/docker/volumes/db/data/pgdata/base/16384/16961 deleted file mode 100644 index 2275a08..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16961 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16962 b/pre/docker/volumes/db/data/pgdata/base/16384/16962 deleted file mode 100644 index f20663d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16962 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16964 b/pre/docker/volumes/db/data/pgdata/base/16384/16964 deleted file mode 100644 index ac4e0c9..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16964 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16965 b/pre/docker/volumes/db/data/pgdata/base/16384/16965 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16970 b/pre/docker/volumes/db/data/pgdata/base/16384/16970 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16971 b/pre/docker/volumes/db/data/pgdata/base/16384/16971 deleted file mode 100644 index 06359a0..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16971 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16972 b/pre/docker/volumes/db/data/pgdata/base/16384/16972 deleted file mode 100644 index 7679bdf..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16972 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16974 b/pre/docker/volumes/db/data/pgdata/base/16384/16974 deleted file mode 100644 index 278c936..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16974 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16975 b/pre/docker/volumes/db/data/pgdata/base/16384/16975 deleted file mode 100644 index 9f522d7..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16975 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16977 b/pre/docker/volumes/db/data/pgdata/base/16384/16977 deleted file mode 100644 index beb256d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16977 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16978 b/pre/docker/volumes/db/data/pgdata/base/16384/16978 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16983 b/pre/docker/volumes/db/data/pgdata/base/16384/16983 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16984 b/pre/docker/volumes/db/data/pgdata/base/16384/16984 deleted file mode 100644 index 980372c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16984 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16985 b/pre/docker/volumes/db/data/pgdata/base/16384/16985 deleted file mode 100644 index 8e55b87..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16985 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16987 b/pre/docker/volumes/db/data/pgdata/base/16384/16987 deleted file mode 100644 index 65bf019..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16987 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16988 b/pre/docker/volumes/db/data/pgdata/base/16384/16988 deleted file mode 100644 index 46c2ee3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16988 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16989 b/pre/docker/volumes/db/data/pgdata/base/16384/16989 deleted file mode 100644 index 5c6216b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16989 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16993 b/pre/docker/volumes/db/data/pgdata/base/16384/16993 deleted file mode 100644 index eff48cf..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16993 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/16994 b/pre/docker/volumes/db/data/pgdata/base/16384/16994 deleted file mode 100644 index b5dc604..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/16994 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17001 b/pre/docker/volumes/db/data/pgdata/base/16384/17001 deleted file mode 100644 index f94f5ab..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17001 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17003 b/pre/docker/volumes/db/data/pgdata/base/16384/17003 deleted file mode 100644 index 01dc247..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17003 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17014 b/pre/docker/volumes/db/data/pgdata/base/16384/17014 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17020 b/pre/docker/volumes/db/data/pgdata/base/16384/17020 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17021 b/pre/docker/volumes/db/data/pgdata/base/16384/17021 deleted file mode 100644 index 0b20f66..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17021 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17022 b/pre/docker/volumes/db/data/pgdata/base/16384/17022 deleted file mode 100644 index 4f36567..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17022 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17024 b/pre/docker/volumes/db/data/pgdata/base/16384/17024 deleted file mode 100644 index ca668a4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17024 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17026 b/pre/docker/volumes/db/data/pgdata/base/16384/17026 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17032 b/pre/docker/volumes/db/data/pgdata/base/16384/17032 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17033 b/pre/docker/volumes/db/data/pgdata/base/16384/17033 deleted file mode 100644 index 022a7d3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17033 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17034 b/pre/docker/volumes/db/data/pgdata/base/16384/17034 deleted file mode 100644 index 11abd14..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17034 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17036 b/pre/docker/volumes/db/data/pgdata/base/16384/17036 deleted file mode 100644 index d1ddb06..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17036 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17045 b/pre/docker/volumes/db/data/pgdata/base/16384/17045 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17055 b/pre/docker/volumes/db/data/pgdata/base/16384/17055 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17056 b/pre/docker/volumes/db/data/pgdata/base/16384/17056 deleted file mode 100644 index 7926daa..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17056 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17057 b/pre/docker/volumes/db/data/pgdata/base/16384/17057 deleted file mode 100644 index a362a24..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17057 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17059 b/pre/docker/volumes/db/data/pgdata/base/16384/17059 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17065 b/pre/docker/volumes/db/data/pgdata/base/16384/17065 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17066 b/pre/docker/volumes/db/data/pgdata/base/16384/17066 deleted file mode 100644 index 0dacca1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17066 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17067 b/pre/docker/volumes/db/data/pgdata/base/16384/17067 deleted file mode 100644 index 04ce156..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17067 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17069 b/pre/docker/volumes/db/data/pgdata/base/16384/17069 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17072 b/pre/docker/volumes/db/data/pgdata/base/16384/17072 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17073 b/pre/docker/volumes/db/data/pgdata/base/16384/17073 deleted file mode 100644 index b503368..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17073 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17074 b/pre/docker/volumes/db/data/pgdata/base/16384/17074 deleted file mode 100644 index 7b1b5eb..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17074 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17075 b/pre/docker/volumes/db/data/pgdata/base/16384/17075 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17079 b/pre/docker/volumes/db/data/pgdata/base/16384/17079 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17080 b/pre/docker/volumes/db/data/pgdata/base/16384/17080 deleted file mode 100644 index 98ee896..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17080 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17081 b/pre/docker/volumes/db/data/pgdata/base/16384/17081 deleted file mode 100644 index c19eac4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17081 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17083 b/pre/docker/volumes/db/data/pgdata/base/16384/17083 deleted file mode 100644 index f739ea0..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17083 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17084 b/pre/docker/volumes/db/data/pgdata/base/16384/17084 deleted file mode 100644 index 7da068c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17084 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17085 b/pre/docker/volumes/db/data/pgdata/base/16384/17085 deleted file mode 100644 index 80a0c52..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17085 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17087 b/pre/docker/volumes/db/data/pgdata/base/16384/17087 deleted file mode 100644 index 6af31a2..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17087 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17090 b/pre/docker/volumes/db/data/pgdata/base/16384/17090 deleted file mode 100644 index 72c0758..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17090 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17090_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/17090_fsm deleted file mode 100644 index 99242df..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17090_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17091 b/pre/docker/volumes/db/data/pgdata/base/16384/17091 deleted file mode 100644 index 412f0b1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17091 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17094 b/pre/docker/volumes/db/data/pgdata/base/16384/17094 deleted file mode 100644 index 54c7c2a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17094 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17096 b/pre/docker/volumes/db/data/pgdata/base/16384/17096 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17101 b/pre/docker/volumes/db/data/pgdata/base/16384/17101 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17102 b/pre/docker/volumes/db/data/pgdata/base/16384/17102 deleted file mode 100644 index d973a85..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17102 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17103 b/pre/docker/volumes/db/data/pgdata/base/16384/17103 deleted file mode 100644 index b7c57b0..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17103 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17105 b/pre/docker/volumes/db/data/pgdata/base/16384/17105 deleted file mode 100644 index a665be5..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17105 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17106 b/pre/docker/volumes/db/data/pgdata/base/16384/17106 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17112 b/pre/docker/volumes/db/data/pgdata/base/16384/17112 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17113 b/pre/docker/volumes/db/data/pgdata/base/16384/17113 deleted file mode 100644 index 5ea9106..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17113 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17114 b/pre/docker/volumes/db/data/pgdata/base/16384/17114 deleted file mode 100644 index 04c4a43..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17114 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17116 b/pre/docker/volumes/db/data/pgdata/base/16384/17116 deleted file mode 100644 index 8f7deec..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17116 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17117 b/pre/docker/volumes/db/data/pgdata/base/16384/17117 deleted file mode 100644 index 55794ba..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17117 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17131 b/pre/docker/volumes/db/data/pgdata/base/16384/17131 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17136 b/pre/docker/volumes/db/data/pgdata/base/16384/17136 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17137 b/pre/docker/volumes/db/data/pgdata/base/16384/17137 deleted file mode 100644 index 1b7e591..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17137 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17138 b/pre/docker/volumes/db/data/pgdata/base/16384/17138 deleted file mode 100644 index edbbde0..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17138 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17140 b/pre/docker/volumes/db/data/pgdata/base/16384/17140 deleted file mode 100644 index b52a827..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17140 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17146 b/pre/docker/volumes/db/data/pgdata/base/16384/17146 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17151 b/pre/docker/volumes/db/data/pgdata/base/16384/17151 deleted file mode 100644 index 83984a7..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17151 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17153 b/pre/docker/volumes/db/data/pgdata/base/16384/17153 deleted file mode 100644 index d96264f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17153 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17154 b/pre/docker/volumes/db/data/pgdata/base/16384/17154 deleted file mode 100644 index ebb6a5a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17154 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17155 b/pre/docker/volumes/db/data/pgdata/base/16384/17155 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17160 b/pre/docker/volumes/db/data/pgdata/base/16384/17160 deleted file mode 100644 index 3aa0948..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17160 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17162 b/pre/docker/volumes/db/data/pgdata/base/16384/17162 deleted file mode 100644 index cb43d47..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17162 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17163 b/pre/docker/volumes/db/data/pgdata/base/16384/17163 deleted file mode 100644 index 8c1307d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17163 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17164 b/pre/docker/volumes/db/data/pgdata/base/16384/17164 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17171 b/pre/docker/volumes/db/data/pgdata/base/16384/17171 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17172 b/pre/docker/volumes/db/data/pgdata/base/16384/17172 deleted file mode 100644 index 25acaaa..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17172 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17173 b/pre/docker/volumes/db/data/pgdata/base/16384/17173 deleted file mode 100644 index c574c6c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17173 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17175 b/pre/docker/volumes/db/data/pgdata/base/16384/17175 deleted file mode 100644 index 71ae75d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17175 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17177 b/pre/docker/volumes/db/data/pgdata/base/16384/17177 deleted file mode 100644 index a541d63..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17177 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17179 b/pre/docker/volumes/db/data/pgdata/base/16384/17179 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17183 b/pre/docker/volumes/db/data/pgdata/base/16384/17183 deleted file mode 100644 index d62aee5..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17183 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17187 b/pre/docker/volumes/db/data/pgdata/base/16384/17187 deleted file mode 100644 index ff3e35a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17187 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17191 b/pre/docker/volumes/db/data/pgdata/base/16384/17191 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17198 b/pre/docker/volumes/db/data/pgdata/base/16384/17198 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17199 b/pre/docker/volumes/db/data/pgdata/base/16384/17199 deleted file mode 100644 index d7dc4e1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17199 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17200 b/pre/docker/volumes/db/data/pgdata/base/16384/17200 deleted file mode 100644 index 0fad227..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17200 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17202 b/pre/docker/volumes/db/data/pgdata/base/16384/17202 deleted file mode 100644 index 851bd27..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17202 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17203 b/pre/docker/volumes/db/data/pgdata/base/16384/17203 deleted file mode 100644 index 9811e92..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17203 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17211 b/pre/docker/volumes/db/data/pgdata/base/16384/17211 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17212 b/pre/docker/volumes/db/data/pgdata/base/16384/17212 deleted file mode 100644 index c2b675b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17212 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17213 b/pre/docker/volumes/db/data/pgdata/base/16384/17213 deleted file mode 100644 index 0cb5ecc..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17213 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17215 b/pre/docker/volumes/db/data/pgdata/base/16384/17215 deleted file mode 100644 index dac060c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17215 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17224 b/pre/docker/volumes/db/data/pgdata/base/16384/17224 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17225 b/pre/docker/volumes/db/data/pgdata/base/16384/17225 deleted file mode 100644 index 1c8dc67..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17225 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17227 b/pre/docker/volumes/db/data/pgdata/base/16384/17227 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17234 b/pre/docker/volumes/db/data/pgdata/base/16384/17234 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17235 b/pre/docker/volumes/db/data/pgdata/base/16384/17235 deleted file mode 100644 index 07da797..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17235 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17236 b/pre/docker/volumes/db/data/pgdata/base/16384/17236 deleted file mode 100644 index 4f39941..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17236 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17238 b/pre/docker/volumes/db/data/pgdata/base/16384/17238 deleted file mode 100644 index 669b256..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17238 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17239 b/pre/docker/volumes/db/data/pgdata/base/16384/17239 deleted file mode 100644 index 481ef44..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17239 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17240 b/pre/docker/volumes/db/data/pgdata/base/16384/17240 deleted file mode 100644 index 9f61f63..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17240 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17241 b/pre/docker/volumes/db/data/pgdata/base/16384/17241 deleted file mode 100644 index 25fc828..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17241 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17254 b/pre/docker/volumes/db/data/pgdata/base/16384/17254 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17261 b/pre/docker/volumes/db/data/pgdata/base/16384/17261 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17262 b/pre/docker/volumes/db/data/pgdata/base/16384/17262 deleted file mode 100644 index a0116e6..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17262 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17263 b/pre/docker/volumes/db/data/pgdata/base/16384/17263 deleted file mode 100644 index 668e58e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17263 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17265 b/pre/docker/volumes/db/data/pgdata/base/16384/17265 deleted file mode 100644 index 8940a95..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17265 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17266 b/pre/docker/volumes/db/data/pgdata/base/16384/17266 deleted file mode 100644 index 49bd788..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17266 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17267 b/pre/docker/volumes/db/data/pgdata/base/16384/17267 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17273 b/pre/docker/volumes/db/data/pgdata/base/16384/17273 deleted file mode 100644 index d503b7c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17273 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17275 b/pre/docker/volumes/db/data/pgdata/base/16384/17275 deleted file mode 100644 index 6b8788a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17275 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17276 b/pre/docker/volumes/db/data/pgdata/base/16384/17276 deleted file mode 100644 index 602e346..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17276 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17277 b/pre/docker/volumes/db/data/pgdata/base/16384/17277 deleted file mode 100644 index 65446ac..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17277 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17278 b/pre/docker/volumes/db/data/pgdata/base/16384/17278 deleted file mode 100644 index 634f13d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17278 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17287 b/pre/docker/volumes/db/data/pgdata/base/16384/17287 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17292 b/pre/docker/volumes/db/data/pgdata/base/16384/17292 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17293 b/pre/docker/volumes/db/data/pgdata/base/16384/17293 deleted file mode 100644 index dbc8cc8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17293 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17294 b/pre/docker/volumes/db/data/pgdata/base/16384/17294 deleted file mode 100644 index 2aa2d22..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17294 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17296 b/pre/docker/volumes/db/data/pgdata/base/16384/17296 deleted file mode 100644 index 1750864..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17296 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17297 b/pre/docker/volumes/db/data/pgdata/base/16384/17297 deleted file mode 100644 index 8d3dff1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17297 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17302 b/pre/docker/volumes/db/data/pgdata/base/16384/17302 deleted file mode 100644 index dfec08b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17302 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17303 b/pre/docker/volumes/db/data/pgdata/base/16384/17303 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17309 b/pre/docker/volumes/db/data/pgdata/base/16384/17309 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17310 b/pre/docker/volumes/db/data/pgdata/base/16384/17310 deleted file mode 100644 index 42dfc68..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17310 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17311 b/pre/docker/volumes/db/data/pgdata/base/16384/17311 deleted file mode 100644 index 8a94012..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17311 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17313 b/pre/docker/volumes/db/data/pgdata/base/16384/17313 deleted file mode 100644 index 3134006..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17313 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17314 b/pre/docker/volumes/db/data/pgdata/base/16384/17314 deleted file mode 100644 index 93973ab..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17314 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17315 b/pre/docker/volumes/db/data/pgdata/base/16384/17315 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17321 b/pre/docker/volumes/db/data/pgdata/base/16384/17321 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17322 b/pre/docker/volumes/db/data/pgdata/base/16384/17322 deleted file mode 100644 index 659bae6..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17322 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17323 b/pre/docker/volumes/db/data/pgdata/base/16384/17323 deleted file mode 100644 index fc61c1a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17323 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17325 b/pre/docker/volumes/db/data/pgdata/base/16384/17325 deleted file mode 100644 index b032314..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17325 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17326 b/pre/docker/volumes/db/data/pgdata/base/16384/17326 deleted file mode 100644 index b1a342f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17326 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17327 b/pre/docker/volumes/db/data/pgdata/base/16384/17327 deleted file mode 100644 index 7a5b82d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17327 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17328 b/pre/docker/volumes/db/data/pgdata/base/16384/17328 deleted file mode 100644 index 1fa6073..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17328 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17329 b/pre/docker/volumes/db/data/pgdata/base/16384/17329 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17336 b/pre/docker/volumes/db/data/pgdata/base/16384/17336 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17337 b/pre/docker/volumes/db/data/pgdata/base/16384/17337 deleted file mode 100644 index a87957f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17337 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17338 b/pre/docker/volumes/db/data/pgdata/base/16384/17338 deleted file mode 100644 index bb22834..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17338 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17340 b/pre/docker/volumes/db/data/pgdata/base/16384/17340 deleted file mode 100644 index 4fe06ec..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17340 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17341 b/pre/docker/volumes/db/data/pgdata/base/16384/17341 deleted file mode 100644 index 99b35bc..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17341 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17342 b/pre/docker/volumes/db/data/pgdata/base/16384/17342 deleted file mode 100644 index 465a5c1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17342 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17343 b/pre/docker/volumes/db/data/pgdata/base/16384/17343 deleted file mode 100644 index 43f6a08..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17343 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17344 b/pre/docker/volumes/db/data/pgdata/base/16384/17344 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17349 b/pre/docker/volumes/db/data/pgdata/base/16384/17349 deleted file mode 100644 index cd2fd38..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17349 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17351 b/pre/docker/volumes/db/data/pgdata/base/16384/17351 deleted file mode 100644 index 01c0157..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17351 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17354 b/pre/docker/volumes/db/data/pgdata/base/16384/17354 deleted file mode 100644 index d9820c2..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17354 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17356 b/pre/docker/volumes/db/data/pgdata/base/16384/17356 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17363 b/pre/docker/volumes/db/data/pgdata/base/16384/17363 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17364 b/pre/docker/volumes/db/data/pgdata/base/16384/17364 deleted file mode 100644 index 4339901..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17364 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17365 b/pre/docker/volumes/db/data/pgdata/base/16384/17365 deleted file mode 100644 index 25ed591..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17365 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17367 b/pre/docker/volumes/db/data/pgdata/base/16384/17367 deleted file mode 100644 index 9178271..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17367 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17368 b/pre/docker/volumes/db/data/pgdata/base/16384/17368 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17374 b/pre/docker/volumes/db/data/pgdata/base/16384/17374 deleted file mode 100644 index 1039842..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17374 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17376 b/pre/docker/volumes/db/data/pgdata/base/16384/17376 deleted file mode 100644 index b013524..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17376 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17377 b/pre/docker/volumes/db/data/pgdata/base/16384/17377 deleted file mode 100644 index fc56133..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17377 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17378 b/pre/docker/volumes/db/data/pgdata/base/16384/17378 deleted file mode 100644 index 22068f8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17378 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17380 b/pre/docker/volumes/db/data/pgdata/base/16384/17380 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17383 b/pre/docker/volumes/db/data/pgdata/base/16384/17383 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17384 b/pre/docker/volumes/db/data/pgdata/base/16384/17384 deleted file mode 100644 index 0c2f63c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17384 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17385 b/pre/docker/volumes/db/data/pgdata/base/16384/17385 deleted file mode 100644 index ab87dca..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17385 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17386 b/pre/docker/volumes/db/data/pgdata/base/16384/17386 deleted file mode 100644 index f3efa8d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17386 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/17387 b/pre/docker/volumes/db/data/pgdata/base/16384/17387 deleted file mode 100644 index 6dd5708..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/17387 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/174 b/pre/docker/volumes/db/data/pgdata/base/16384/174 deleted file mode 100644 index 7c9d056..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/174 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/175 b/pre/docker/volumes/db/data/pgdata/base/16384/175 deleted file mode 100644 index 05b9996..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/175 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2187 b/pre/docker/volumes/db/data/pgdata/base/16384/2187 deleted file mode 100644 index 1e9c1c3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2187 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2224 b/pre/docker/volumes/db/data/pgdata/base/16384/2224 deleted file mode 100644 index 4e77e41..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2224 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2228 b/pre/docker/volumes/db/data/pgdata/base/16384/2228 deleted file mode 100644 index d85c987..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2228 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2328 b/pre/docker/volumes/db/data/pgdata/base/16384/2328 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2336 b/pre/docker/volumes/db/data/pgdata/base/16384/2336 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2337 b/pre/docker/volumes/db/data/pgdata/base/16384/2337 deleted file mode 100644 index 5063c6f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2337 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2579 b/pre/docker/volumes/db/data/pgdata/base/16384/2579 deleted file mode 100644 index 28d1a65..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2579 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2600 b/pre/docker/volumes/db/data/pgdata/base/16384/2600 deleted file mode 100644 index 6729c64..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2600 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2600_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/2600_fsm deleted file mode 100644 index 2c07b87..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2600_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2600_vm b/pre/docker/volumes/db/data/pgdata/base/16384/2600_vm deleted file mode 100644 index 2608edf..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2600_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2601 b/pre/docker/volumes/db/data/pgdata/base/16384/2601 deleted file mode 100644 index 7a7638e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2601 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2601_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/2601_fsm deleted file mode 100644 index a982a21..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2601_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2601_vm b/pre/docker/volumes/db/data/pgdata/base/16384/2601_vm deleted file mode 100644 index 51b8cff..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2601_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2602 b/pre/docker/volumes/db/data/pgdata/base/16384/2602 deleted file mode 100644 index 7f088d8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2602 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2602_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/2602_fsm deleted file mode 100644 index 83289ec..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2602_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2602_vm b/pre/docker/volumes/db/data/pgdata/base/16384/2602_vm deleted file mode 100644 index 9b01249..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2602_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2603 b/pre/docker/volumes/db/data/pgdata/base/16384/2603 deleted file mode 100644 index f57dacf..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2603 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2603_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/2603_fsm deleted file mode 100644 index 65a85a5..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2603_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2603_vm b/pre/docker/volumes/db/data/pgdata/base/16384/2603_vm deleted file mode 100644 index 5f55356..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2603_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2604 b/pre/docker/volumes/db/data/pgdata/base/16384/2604 deleted file mode 100644 index 7b1271f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2604 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2604_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/2604_fsm deleted file mode 100644 index 25d2930..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2604_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2605 b/pre/docker/volumes/db/data/pgdata/base/16384/2605 deleted file mode 100644 index 1ae5fce..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2605 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2605_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/2605_fsm deleted file mode 100644 index 958f231..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2605_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2605_vm b/pre/docker/volumes/db/data/pgdata/base/16384/2605_vm deleted file mode 100644 index 1f18f64..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2605_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2606 b/pre/docker/volumes/db/data/pgdata/base/16384/2606 deleted file mode 100644 index f1723f3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2606 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2606_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/2606_fsm deleted file mode 100644 index 9dea6b7..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2606_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2606_vm b/pre/docker/volumes/db/data/pgdata/base/16384/2606_vm deleted file mode 100644 index 7139bbb..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2606_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2607 b/pre/docker/volumes/db/data/pgdata/base/16384/2607 deleted file mode 100644 index ae2e665..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2607 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2607_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/2607_fsm deleted file mode 100644 index 01079c6..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2607_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2607_vm b/pre/docker/volumes/db/data/pgdata/base/16384/2607_vm deleted file mode 100644 index 6b17ed3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2607_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2608 b/pre/docker/volumes/db/data/pgdata/base/16384/2608 deleted file mode 100644 index d3e1dc5..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2608 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2608_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/2608_fsm deleted file mode 100644 index eaf2655..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2608_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2608_vm b/pre/docker/volumes/db/data/pgdata/base/16384/2608_vm deleted file mode 100644 index 0a11701..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2608_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2609 b/pre/docker/volumes/db/data/pgdata/base/16384/2609 deleted file mode 100644 index b80969b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2609 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2609_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/2609_fsm deleted file mode 100644 index 55bde7b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2609_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2609_vm b/pre/docker/volumes/db/data/pgdata/base/16384/2609_vm deleted file mode 100644 index 77a561b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2609_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2610 b/pre/docker/volumes/db/data/pgdata/base/16384/2610 deleted file mode 100644 index 16d2592..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2610 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2610_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/2610_fsm deleted file mode 100644 index c7bbcb0..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2610_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2610_vm b/pre/docker/volumes/db/data/pgdata/base/16384/2610_vm deleted file mode 100644 index 6db73d6..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2610_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2611 b/pre/docker/volumes/db/data/pgdata/base/16384/2611 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2612 b/pre/docker/volumes/db/data/pgdata/base/16384/2612 deleted file mode 100644 index 83965e5..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2612 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2612_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/2612_fsm deleted file mode 100644 index edf72ca..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2612_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2612_vm b/pre/docker/volumes/db/data/pgdata/base/16384/2612_vm deleted file mode 100644 index abbf739..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2612_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2613 b/pre/docker/volumes/db/data/pgdata/base/16384/2613 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2615 b/pre/docker/volumes/db/data/pgdata/base/16384/2615 deleted file mode 100644 index ba7c5b7..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2615 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2615_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/2615_fsm deleted file mode 100644 index 25b0231..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2615_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2615_vm b/pre/docker/volumes/db/data/pgdata/base/16384/2615_vm deleted file mode 100644 index dbb3c27..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2615_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2616 b/pre/docker/volumes/db/data/pgdata/base/16384/2616 deleted file mode 100644 index 86b65ee..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2616 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2616_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/2616_fsm deleted file mode 100644 index 5c65ff1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2616_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2616_vm b/pre/docker/volumes/db/data/pgdata/base/16384/2616_vm deleted file mode 100644 index 6c5ac4a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2616_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2617 b/pre/docker/volumes/db/data/pgdata/base/16384/2617 deleted file mode 100644 index 64a4f70..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2617 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2617_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/2617_fsm deleted file mode 100644 index 001e67e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2617_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2617_vm b/pre/docker/volumes/db/data/pgdata/base/16384/2617_vm deleted file mode 100644 index 230b91c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2617_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2618 b/pre/docker/volumes/db/data/pgdata/base/16384/2618 deleted file mode 100644 index af5b203..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2618 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2618_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/2618_fsm deleted file mode 100644 index 56cce23..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2618_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2618_vm b/pre/docker/volumes/db/data/pgdata/base/16384/2618_vm deleted file mode 100644 index 057d821..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2618_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2619 b/pre/docker/volumes/db/data/pgdata/base/16384/2619 deleted file mode 100644 index f2c37d5..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2619 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2619_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/2619_fsm deleted file mode 100644 index e9cf1cf..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2619_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2619_vm b/pre/docker/volumes/db/data/pgdata/base/16384/2619_vm deleted file mode 100644 index 99b3a7f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2619_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2620 b/pre/docker/volumes/db/data/pgdata/base/16384/2620 deleted file mode 100644 index 4c6e34f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2620 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2650 b/pre/docker/volumes/db/data/pgdata/base/16384/2650 deleted file mode 100644 index cbf957e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2650 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2651 b/pre/docker/volumes/db/data/pgdata/base/16384/2651 deleted file mode 100644 index 27f4639..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2651 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2652 b/pre/docker/volumes/db/data/pgdata/base/16384/2652 deleted file mode 100644 index f6a859d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2652 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2653 b/pre/docker/volumes/db/data/pgdata/base/16384/2653 deleted file mode 100644 index 80a1a54..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2653 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2654 b/pre/docker/volumes/db/data/pgdata/base/16384/2654 deleted file mode 100644 index 9a51e97..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2654 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2655 b/pre/docker/volumes/db/data/pgdata/base/16384/2655 deleted file mode 100644 index b821a89..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2655 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2656 b/pre/docker/volumes/db/data/pgdata/base/16384/2656 deleted file mode 100644 index 2759fdb..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2656 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2657 b/pre/docker/volumes/db/data/pgdata/base/16384/2657 deleted file mode 100644 index a0121d4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2657 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2658 b/pre/docker/volumes/db/data/pgdata/base/16384/2658 deleted file mode 100644 index 20bb5b4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2658 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2659 b/pre/docker/volumes/db/data/pgdata/base/16384/2659 deleted file mode 100644 index 03ebeed..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2659 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2660 b/pre/docker/volumes/db/data/pgdata/base/16384/2660 deleted file mode 100644 index e0d67e4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2660 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2661 b/pre/docker/volumes/db/data/pgdata/base/16384/2661 deleted file mode 100644 index 2fb006f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2661 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2662 b/pre/docker/volumes/db/data/pgdata/base/16384/2662 deleted file mode 100644 index 67be40c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2662 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2663 b/pre/docker/volumes/db/data/pgdata/base/16384/2663 deleted file mode 100644 index 379c6d5..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2663 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2664 b/pre/docker/volumes/db/data/pgdata/base/16384/2664 deleted file mode 100644 index 88dcec4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2664 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2665 b/pre/docker/volumes/db/data/pgdata/base/16384/2665 deleted file mode 100644 index f9e5a4a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2665 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2666 b/pre/docker/volumes/db/data/pgdata/base/16384/2666 deleted file mode 100644 index c1d3b64..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2666 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2667 b/pre/docker/volumes/db/data/pgdata/base/16384/2667 deleted file mode 100644 index 53d3a29..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2667 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2668 b/pre/docker/volumes/db/data/pgdata/base/16384/2668 deleted file mode 100644 index 5eba9ca..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2668 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2669 b/pre/docker/volumes/db/data/pgdata/base/16384/2669 deleted file mode 100644 index 7985836..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2669 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2670 b/pre/docker/volumes/db/data/pgdata/base/16384/2670 deleted file mode 100644 index 4016ed7..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2670 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2673 b/pre/docker/volumes/db/data/pgdata/base/16384/2673 deleted file mode 100644 index 83d3f53..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2673 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2674 b/pre/docker/volumes/db/data/pgdata/base/16384/2674 deleted file mode 100644 index b66e96b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2674 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2675 b/pre/docker/volumes/db/data/pgdata/base/16384/2675 deleted file mode 100644 index eb4cae2..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2675 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2678 b/pre/docker/volumes/db/data/pgdata/base/16384/2678 deleted file mode 100644 index 0d0b676..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2678 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2679 b/pre/docker/volumes/db/data/pgdata/base/16384/2679 deleted file mode 100644 index bedaf35..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2679 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2680 b/pre/docker/volumes/db/data/pgdata/base/16384/2680 deleted file mode 100644 index bc5718a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2680 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2681 b/pre/docker/volumes/db/data/pgdata/base/16384/2681 deleted file mode 100644 index fd3601d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2681 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2682 b/pre/docker/volumes/db/data/pgdata/base/16384/2682 deleted file mode 100644 index df65fe7..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2682 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2683 b/pre/docker/volumes/db/data/pgdata/base/16384/2683 deleted file mode 100644 index 52580b6..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2683 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2684 b/pre/docker/volumes/db/data/pgdata/base/16384/2684 deleted file mode 100644 index d793984..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2684 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2685 b/pre/docker/volumes/db/data/pgdata/base/16384/2685 deleted file mode 100644 index b07a0e4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2685 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2686 b/pre/docker/volumes/db/data/pgdata/base/16384/2686 deleted file mode 100644 index d6aa41d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2686 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2687 b/pre/docker/volumes/db/data/pgdata/base/16384/2687 deleted file mode 100644 index 41be5b3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2687 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2688 b/pre/docker/volumes/db/data/pgdata/base/16384/2688 deleted file mode 100644 index 0683f2e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2688 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2689 b/pre/docker/volumes/db/data/pgdata/base/16384/2689 deleted file mode 100644 index 461e031..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2689 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2690 b/pre/docker/volumes/db/data/pgdata/base/16384/2690 deleted file mode 100644 index 1dc207e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2690 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2691 b/pre/docker/volumes/db/data/pgdata/base/16384/2691 deleted file mode 100644 index 00437ee..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2691 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2692 b/pre/docker/volumes/db/data/pgdata/base/16384/2692 deleted file mode 100644 index 438469c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2692 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2693 b/pre/docker/volumes/db/data/pgdata/base/16384/2693 deleted file mode 100644 index 1d02939..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2693 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2696 b/pre/docker/volumes/db/data/pgdata/base/16384/2696 deleted file mode 100644 index da2ca3f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2696 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2699 b/pre/docker/volumes/db/data/pgdata/base/16384/2699 deleted file mode 100644 index 5d65cec..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2699 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2701 b/pre/docker/volumes/db/data/pgdata/base/16384/2701 deleted file mode 100644 index 1b36396..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2701 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2702 b/pre/docker/volumes/db/data/pgdata/base/16384/2702 deleted file mode 100644 index 00dd086..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2702 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2703 b/pre/docker/volumes/db/data/pgdata/base/16384/2703 deleted file mode 100644 index 2eb2d90..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2703 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2704 b/pre/docker/volumes/db/data/pgdata/base/16384/2704 deleted file mode 100644 index 6a85363..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2704 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2753 b/pre/docker/volumes/db/data/pgdata/base/16384/2753 deleted file mode 100644 index b2100d3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2753 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2753_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/2753_fsm deleted file mode 100644 index a319426..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2753_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2753_vm b/pre/docker/volumes/db/data/pgdata/base/16384/2753_vm deleted file mode 100644 index 80e48b1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2753_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2754 b/pre/docker/volumes/db/data/pgdata/base/16384/2754 deleted file mode 100644 index 205b25e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2754 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2755 b/pre/docker/volumes/db/data/pgdata/base/16384/2755 deleted file mode 100644 index f04c01f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2755 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2756 b/pre/docker/volumes/db/data/pgdata/base/16384/2756 deleted file mode 100644 index 1d82c1a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2756 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2757 b/pre/docker/volumes/db/data/pgdata/base/16384/2757 deleted file mode 100644 index 3b271b4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2757 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2830 b/pre/docker/volumes/db/data/pgdata/base/16384/2830 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2831 b/pre/docker/volumes/db/data/pgdata/base/16384/2831 deleted file mode 100644 index f51291a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2831 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2832 b/pre/docker/volumes/db/data/pgdata/base/16384/2832 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2833 b/pre/docker/volumes/db/data/pgdata/base/16384/2833 deleted file mode 100644 index d470d82..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2833 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2834 b/pre/docker/volumes/db/data/pgdata/base/16384/2834 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2835 b/pre/docker/volumes/db/data/pgdata/base/16384/2835 deleted file mode 100644 index 3097ef9..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2835 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2836 b/pre/docker/volumes/db/data/pgdata/base/16384/2836 deleted file mode 100644 index 03a9b38..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2836 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2836_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/2836_fsm deleted file mode 100644 index bff1e63..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2836_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2836_vm b/pre/docker/volumes/db/data/pgdata/base/16384/2836_vm deleted file mode 100644 index dcd4a8f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2836_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2837 b/pre/docker/volumes/db/data/pgdata/base/16384/2837 deleted file mode 100644 index 1107599..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2837 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2838 b/pre/docker/volumes/db/data/pgdata/base/16384/2838 deleted file mode 100644 index f6bef92..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2838 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2838_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/2838_fsm deleted file mode 100644 index 0f49b7e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2838_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2838_vm b/pre/docker/volumes/db/data/pgdata/base/16384/2838_vm deleted file mode 100644 index e5e79fa..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2838_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2839 b/pre/docker/volumes/db/data/pgdata/base/16384/2839 deleted file mode 100644 index 14796da..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2839 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2840 b/pre/docker/volumes/db/data/pgdata/base/16384/2840 deleted file mode 100644 index f3010fd..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2840 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2840_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/2840_fsm deleted file mode 100644 index 593e899..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2840_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2840_vm b/pre/docker/volumes/db/data/pgdata/base/16384/2840_vm deleted file mode 100644 index 61e0bc1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2840_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2841 b/pre/docker/volumes/db/data/pgdata/base/16384/2841 deleted file mode 100644 index c8a498f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2841 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2995 b/pre/docker/volumes/db/data/pgdata/base/16384/2995 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/2996 b/pre/docker/volumes/db/data/pgdata/base/16384/2996 deleted file mode 100644 index 72c4425..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/2996 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3079 b/pre/docker/volumes/db/data/pgdata/base/16384/3079 deleted file mode 100644 index cb14310..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3079 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3079_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/3079_fsm deleted file mode 100644 index c98dcef..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3079_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3079_vm b/pre/docker/volumes/db/data/pgdata/base/16384/3079_vm deleted file mode 100644 index 8f131ec..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3079_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3080 b/pre/docker/volumes/db/data/pgdata/base/16384/3080 deleted file mode 100644 index 6781f0a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3080 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3081 b/pre/docker/volumes/db/data/pgdata/base/16384/3081 deleted file mode 100644 index 65bc4cf..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3081 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3085 b/pre/docker/volumes/db/data/pgdata/base/16384/3085 deleted file mode 100644 index 6dcf52d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3085 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3118 b/pre/docker/volumes/db/data/pgdata/base/16384/3118 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3119 b/pre/docker/volumes/db/data/pgdata/base/16384/3119 deleted file mode 100644 index c1cee4d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3119 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3164 b/pre/docker/volumes/db/data/pgdata/base/16384/3164 deleted file mode 100644 index d2f71aa..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3164 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3256 b/pre/docker/volumes/db/data/pgdata/base/16384/3256 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3257 b/pre/docker/volumes/db/data/pgdata/base/16384/3257 deleted file mode 100644 index cbf70d2..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3257 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3258 b/pre/docker/volumes/db/data/pgdata/base/16384/3258 deleted file mode 100644 index b625108..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3258 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3350 b/pre/docker/volumes/db/data/pgdata/base/16384/3350 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3351 b/pre/docker/volumes/db/data/pgdata/base/16384/3351 deleted file mode 100644 index 67dcf75..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3351 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3379 b/pre/docker/volumes/db/data/pgdata/base/16384/3379 deleted file mode 100644 index 5fed93c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3379 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3380 b/pre/docker/volumes/db/data/pgdata/base/16384/3380 deleted file mode 100644 index 68b2301..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3380 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3381 b/pre/docker/volumes/db/data/pgdata/base/16384/3381 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3394 b/pre/docker/volumes/db/data/pgdata/base/16384/3394 deleted file mode 100644 index 6f91c2f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3394 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3394_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/3394_fsm deleted file mode 100644 index 5ba380c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3394_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3394_vm b/pre/docker/volumes/db/data/pgdata/base/16384/3394_vm deleted file mode 100644 index 03426f7..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3394_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3395 b/pre/docker/volumes/db/data/pgdata/base/16384/3395 deleted file mode 100644 index a55ac3d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3395 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3429 b/pre/docker/volumes/db/data/pgdata/base/16384/3429 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3430 b/pre/docker/volumes/db/data/pgdata/base/16384/3430 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3431 b/pre/docker/volumes/db/data/pgdata/base/16384/3431 deleted file mode 100644 index 47e55e8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3431 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3433 b/pre/docker/volumes/db/data/pgdata/base/16384/3433 deleted file mode 100644 index e9cfdbe..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3433 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3439 b/pre/docker/volumes/db/data/pgdata/base/16384/3439 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3440 b/pre/docker/volumes/db/data/pgdata/base/16384/3440 deleted file mode 100644 index 74c6534..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3440 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3455 b/pre/docker/volumes/db/data/pgdata/base/16384/3455 deleted file mode 100644 index 32f3c0a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3455 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3456 b/pre/docker/volumes/db/data/pgdata/base/16384/3456 deleted file mode 100644 index fea1359..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3456 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3456_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/3456_fsm deleted file mode 100644 index 12d20d3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3456_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3456_vm b/pre/docker/volumes/db/data/pgdata/base/16384/3456_vm deleted file mode 100644 index 08b3d48..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3456_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3466 b/pre/docker/volumes/db/data/pgdata/base/16384/3466 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3467 b/pre/docker/volumes/db/data/pgdata/base/16384/3467 deleted file mode 100644 index e195634..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3467 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3468 b/pre/docker/volumes/db/data/pgdata/base/16384/3468 deleted file mode 100644 index 067d0e8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3468 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3501 b/pre/docker/volumes/db/data/pgdata/base/16384/3501 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3502 b/pre/docker/volumes/db/data/pgdata/base/16384/3502 deleted file mode 100644 index 613b89e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3502 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3503 b/pre/docker/volumes/db/data/pgdata/base/16384/3503 deleted file mode 100644 index 8e2e8ad..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3503 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3534 b/pre/docker/volumes/db/data/pgdata/base/16384/3534 deleted file mode 100644 index 76685dd..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3534 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3541 b/pre/docker/volumes/db/data/pgdata/base/16384/3541 deleted file mode 100644 index 8f199e8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3541 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3541_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/3541_fsm deleted file mode 100644 index 41dc45b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3541_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3541_vm b/pre/docker/volumes/db/data/pgdata/base/16384/3541_vm deleted file mode 100644 index 2963c78..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3541_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3542 b/pre/docker/volumes/db/data/pgdata/base/16384/3542 deleted file mode 100644 index 6cdbbd6..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3542 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3574 b/pre/docker/volumes/db/data/pgdata/base/16384/3574 deleted file mode 100644 index 55ec107..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3574 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3575 b/pre/docker/volumes/db/data/pgdata/base/16384/3575 deleted file mode 100644 index d22f494..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3575 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3576 b/pre/docker/volumes/db/data/pgdata/base/16384/3576 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3596 b/pre/docker/volumes/db/data/pgdata/base/16384/3596 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3597 b/pre/docker/volumes/db/data/pgdata/base/16384/3597 deleted file mode 100644 index b3d5a6b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3597 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3598 b/pre/docker/volumes/db/data/pgdata/base/16384/3598 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3599 b/pre/docker/volumes/db/data/pgdata/base/16384/3599 deleted file mode 100644 index 5543dad..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3599 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3600 b/pre/docker/volumes/db/data/pgdata/base/16384/3600 deleted file mode 100644 index 81d3d87..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3600 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3600_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/3600_fsm deleted file mode 100644 index c9e2f94..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3600_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3600_vm b/pre/docker/volumes/db/data/pgdata/base/16384/3600_vm deleted file mode 100644 index c790601..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3600_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3601 b/pre/docker/volumes/db/data/pgdata/base/16384/3601 deleted file mode 100644 index c71dafd..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3601 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3601_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/3601_fsm deleted file mode 100644 index 235a01e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3601_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3601_vm b/pre/docker/volumes/db/data/pgdata/base/16384/3601_vm deleted file mode 100644 index 7b1c47b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3601_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3602 b/pre/docker/volumes/db/data/pgdata/base/16384/3602 deleted file mode 100644 index 12dce80..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3602 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3602_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/3602_fsm deleted file mode 100644 index 86a3e71..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3602_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3602_vm b/pre/docker/volumes/db/data/pgdata/base/16384/3602_vm deleted file mode 100644 index 7054aef..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3602_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3603 b/pre/docker/volumes/db/data/pgdata/base/16384/3603 deleted file mode 100644 index 9e6ad89..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3603 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3603_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/3603_fsm deleted file mode 100644 index 11bda95..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3603_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3603_vm b/pre/docker/volumes/db/data/pgdata/base/16384/3603_vm deleted file mode 100644 index 36c3c8d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3603_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3604 b/pre/docker/volumes/db/data/pgdata/base/16384/3604 deleted file mode 100644 index 8c436a6..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3604 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3605 b/pre/docker/volumes/db/data/pgdata/base/16384/3605 deleted file mode 100644 index 3f4c245..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3605 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3606 b/pre/docker/volumes/db/data/pgdata/base/16384/3606 deleted file mode 100644 index 88fd5ae..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3606 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3607 b/pre/docker/volumes/db/data/pgdata/base/16384/3607 deleted file mode 100644 index abf58ce..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3607 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3608 b/pre/docker/volumes/db/data/pgdata/base/16384/3608 deleted file mode 100644 index de81d27..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3608 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3609 b/pre/docker/volumes/db/data/pgdata/base/16384/3609 deleted file mode 100644 index 6299f4c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3609 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3712 b/pre/docker/volumes/db/data/pgdata/base/16384/3712 deleted file mode 100644 index e5bbe6f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3712 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3764 b/pre/docker/volumes/db/data/pgdata/base/16384/3764 deleted file mode 100644 index 2e570b4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3764 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3764_fsm b/pre/docker/volumes/db/data/pgdata/base/16384/3764_fsm deleted file mode 100644 index b3b04c9..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3764_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3764_vm b/pre/docker/volumes/db/data/pgdata/base/16384/3764_vm deleted file mode 100644 index 3d02e33..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3764_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3766 b/pre/docker/volumes/db/data/pgdata/base/16384/3766 deleted file mode 100644 index d8f89dd..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3766 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3767 b/pre/docker/volumes/db/data/pgdata/base/16384/3767 deleted file mode 100644 index 055b49a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3767 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/3997 b/pre/docker/volumes/db/data/pgdata/base/16384/3997 deleted file mode 100644 index f5862f5..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/3997 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/4143 b/pre/docker/volumes/db/data/pgdata/base/16384/4143 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/4144 b/pre/docker/volumes/db/data/pgdata/base/16384/4144 deleted file mode 100644 index 5de310c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/4144 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/4145 b/pre/docker/volumes/db/data/pgdata/base/16384/4145 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/4146 b/pre/docker/volumes/db/data/pgdata/base/16384/4146 deleted file mode 100644 index 260103d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/4146 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/4147 b/pre/docker/volumes/db/data/pgdata/base/16384/4147 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/4148 b/pre/docker/volumes/db/data/pgdata/base/16384/4148 deleted file mode 100644 index cf86803..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/4148 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/4149 b/pre/docker/volumes/db/data/pgdata/base/16384/4149 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/4150 b/pre/docker/volumes/db/data/pgdata/base/16384/4150 deleted file mode 100644 index 458b4b7..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/4150 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/4151 b/pre/docker/volumes/db/data/pgdata/base/16384/4151 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/4152 b/pre/docker/volumes/db/data/pgdata/base/16384/4152 deleted file mode 100644 index e4dcbd4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/4152 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/4153 b/pre/docker/volumes/db/data/pgdata/base/16384/4153 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/4154 b/pre/docker/volumes/db/data/pgdata/base/16384/4154 deleted file mode 100644 index e845df4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/4154 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/4155 b/pre/docker/volumes/db/data/pgdata/base/16384/4155 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/4156 b/pre/docker/volumes/db/data/pgdata/base/16384/4156 deleted file mode 100644 index d9712b9..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/4156 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/4157 b/pre/docker/volumes/db/data/pgdata/base/16384/4157 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/4158 b/pre/docker/volumes/db/data/pgdata/base/16384/4158 deleted file mode 100644 index 72081ca..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/4158 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/4159 b/pre/docker/volumes/db/data/pgdata/base/16384/4159 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/4160 b/pre/docker/volumes/db/data/pgdata/base/16384/4160 deleted file mode 100644 index 844b18a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/4160 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/4163 b/pre/docker/volumes/db/data/pgdata/base/16384/4163 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/4164 b/pre/docker/volumes/db/data/pgdata/base/16384/4164 deleted file mode 100644 index eb8a4e0..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/4164 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/4165 b/pre/docker/volumes/db/data/pgdata/base/16384/4165 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/4166 b/pre/docker/volumes/db/data/pgdata/base/16384/4166 deleted file mode 100644 index 5658bdf..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/4166 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/4167 b/pre/docker/volumes/db/data/pgdata/base/16384/4167 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/4168 b/pre/docker/volumes/db/data/pgdata/base/16384/4168 deleted file mode 100644 index 0cd6853..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/4168 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/4169 b/pre/docker/volumes/db/data/pgdata/base/16384/4169 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/4170 b/pre/docker/volumes/db/data/pgdata/base/16384/4170 deleted file mode 100644 index d0af655..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/4170 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/4171 b/pre/docker/volumes/db/data/pgdata/base/16384/4171 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/4172 b/pre/docker/volumes/db/data/pgdata/base/16384/4172 deleted file mode 100644 index 14a4ff5..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/4172 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/4173 b/pre/docker/volumes/db/data/pgdata/base/16384/4173 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/4174 b/pre/docker/volumes/db/data/pgdata/base/16384/4174 deleted file mode 100644 index c02c3a4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/4174 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/5002 b/pre/docker/volumes/db/data/pgdata/base/16384/5002 deleted file mode 100644 index 31ff113..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/5002 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/548 b/pre/docker/volumes/db/data/pgdata/base/16384/548 deleted file mode 100644 index 62ef2ab..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/548 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/549 b/pre/docker/volumes/db/data/pgdata/base/16384/549 deleted file mode 100644 index 9e74b85..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/549 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/6102 b/pre/docker/volumes/db/data/pgdata/base/16384/6102 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/6104 b/pre/docker/volumes/db/data/pgdata/base/16384/6104 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/6106 b/pre/docker/volumes/db/data/pgdata/base/16384/6106 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/6110 b/pre/docker/volumes/db/data/pgdata/base/16384/6110 deleted file mode 100644 index d220a74..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/6110 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/6111 b/pre/docker/volumes/db/data/pgdata/base/16384/6111 deleted file mode 100644 index 27d7760..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/6111 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/6112 b/pre/docker/volumes/db/data/pgdata/base/16384/6112 deleted file mode 100644 index c66fd5b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/6112 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/6113 b/pre/docker/volumes/db/data/pgdata/base/16384/6113 deleted file mode 100644 index b9c238f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/6113 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/6116 b/pre/docker/volumes/db/data/pgdata/base/16384/6116 deleted file mode 100644 index a68e540..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/6116 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/6117 b/pre/docker/volumes/db/data/pgdata/base/16384/6117 deleted file mode 100644 index 07b88f6..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/6117 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/6175 b/pre/docker/volumes/db/data/pgdata/base/16384/6175 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/6176 b/pre/docker/volumes/db/data/pgdata/base/16384/6176 deleted file mode 100644 index 5e81ecc..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/6176 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/6228 b/pre/docker/volumes/db/data/pgdata/base/16384/6228 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/6229 b/pre/docker/volumes/db/data/pgdata/base/16384/6229 deleted file mode 100644 index 2922920..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/6229 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/6237 b/pre/docker/volumes/db/data/pgdata/base/16384/6237 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/6238 b/pre/docker/volumes/db/data/pgdata/base/16384/6238 deleted file mode 100644 index faa5669..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/6238 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/6239 b/pre/docker/volumes/db/data/pgdata/base/16384/6239 deleted file mode 100644 index 3743774..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/6239 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/826 b/pre/docker/volumes/db/data/pgdata/base/16384/826 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/827 b/pre/docker/volumes/db/data/pgdata/base/16384/827 deleted file mode 100644 index 8bf979d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/827 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/828 b/pre/docker/volumes/db/data/pgdata/base/16384/828 deleted file mode 100644 index 80acfc2..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/828 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/PG_VERSION b/pre/docker/volumes/db/data/pgdata/base/16384/PG_VERSION deleted file mode 100644 index 60d3b2f..0000000 --- a/pre/docker/volumes/db/data/pgdata/base/16384/PG_VERSION +++ /dev/null @@ -1 +0,0 @@ -15 diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/pg_filenode.map b/pre/docker/volumes/db/data/pgdata/base/16384/pg_filenode.map deleted file mode 100644 index 193d78f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/pg_filenode.map and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/16384/pg_internal.init b/pre/docker/volumes/db/data/pgdata/base/16384/pg_internal.init deleted file mode 100644 index 1c5842f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/16384/pg_internal.init and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/112 b/pre/docker/volumes/db/data/pgdata/base/4/112 deleted file mode 100644 index 784a4c1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/112 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/113 b/pre/docker/volumes/db/data/pgdata/base/4/113 deleted file mode 100644 index cc2c412..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/113 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/1247 b/pre/docker/volumes/db/data/pgdata/base/4/1247 deleted file mode 100644 index 7334f8f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/1247 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/1247_fsm b/pre/docker/volumes/db/data/pgdata/base/4/1247_fsm deleted file mode 100644 index d9ff302..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/1247_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/1247_vm b/pre/docker/volumes/db/data/pgdata/base/4/1247_vm deleted file mode 100644 index 79164da..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/1247_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/1249 b/pre/docker/volumes/db/data/pgdata/base/4/1249 deleted file mode 100644 index d03c7f7..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/1249 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/1249_fsm b/pre/docker/volumes/db/data/pgdata/base/4/1249_fsm deleted file mode 100644 index 87def57..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/1249_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/1249_vm b/pre/docker/volumes/db/data/pgdata/base/4/1249_vm deleted file mode 100644 index 960d107..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/1249_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/1255 b/pre/docker/volumes/db/data/pgdata/base/4/1255 deleted file mode 100644 index b55d7e5..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/1255 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/1255_fsm b/pre/docker/volumes/db/data/pgdata/base/4/1255_fsm deleted file mode 100644 index 5abeaaf..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/1255_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/1255_vm b/pre/docker/volumes/db/data/pgdata/base/4/1255_vm deleted file mode 100644 index 964a2f4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/1255_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/1259 b/pre/docker/volumes/db/data/pgdata/base/4/1259 deleted file mode 100644 index 3c28303..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/1259 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/1259_fsm b/pre/docker/volumes/db/data/pgdata/base/4/1259_fsm deleted file mode 100644 index bb60b30..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/1259_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/1259_vm b/pre/docker/volumes/db/data/pgdata/base/4/1259_vm deleted file mode 100644 index ecd6d00..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/1259_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/13436 b/pre/docker/volumes/db/data/pgdata/base/4/13436 deleted file mode 100644 index 3999484..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/13436 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/13436_fsm b/pre/docker/volumes/db/data/pgdata/base/4/13436_fsm deleted file mode 100644 index dff9611..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/13436_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/13436_vm b/pre/docker/volumes/db/data/pgdata/base/4/13436_vm deleted file mode 100644 index 8c7c7fa..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/13436_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/13439 b/pre/docker/volumes/db/data/pgdata/base/4/13439 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/13440 b/pre/docker/volumes/db/data/pgdata/base/4/13440 deleted file mode 100644 index ec37b03..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/13440 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/13441 b/pre/docker/volumes/db/data/pgdata/base/4/13441 deleted file mode 100644 index 281c6bb..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/13441 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/13441_fsm b/pre/docker/volumes/db/data/pgdata/base/4/13441_fsm deleted file mode 100644 index 70d16ce..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/13441_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/13441_vm b/pre/docker/volumes/db/data/pgdata/base/4/13441_vm deleted file mode 100644 index 7af7e21..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/13441_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/13444 b/pre/docker/volumes/db/data/pgdata/base/4/13444 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/13445 b/pre/docker/volumes/db/data/pgdata/base/4/13445 deleted file mode 100644 index f4bebf3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/13445 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/13446 b/pre/docker/volumes/db/data/pgdata/base/4/13446 deleted file mode 100644 index 4e6888c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/13446 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/13446_fsm b/pre/docker/volumes/db/data/pgdata/base/4/13446_fsm deleted file mode 100644 index d388044..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/13446_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/13446_vm b/pre/docker/volumes/db/data/pgdata/base/4/13446_vm deleted file mode 100644 index 08b51fd..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/13446_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/13449 b/pre/docker/volumes/db/data/pgdata/base/4/13449 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/13450 b/pre/docker/volumes/db/data/pgdata/base/4/13450 deleted file mode 100644 index 1127ac4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/13450 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/13451 b/pre/docker/volumes/db/data/pgdata/base/4/13451 deleted file mode 100644 index fbd871f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/13451 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/13451_fsm b/pre/docker/volumes/db/data/pgdata/base/4/13451_fsm deleted file mode 100644 index a836ddf..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/13451_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/13451_vm b/pre/docker/volumes/db/data/pgdata/base/4/13451_vm deleted file mode 100644 index 2ce6938..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/13451_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/13454 b/pre/docker/volumes/db/data/pgdata/base/4/13454 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/13455 b/pre/docker/volumes/db/data/pgdata/base/4/13455 deleted file mode 100644 index ec7333c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/13455 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/1417 b/pre/docker/volumes/db/data/pgdata/base/4/1417 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/1418 b/pre/docker/volumes/db/data/pgdata/base/4/1418 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/174 b/pre/docker/volumes/db/data/pgdata/base/4/174 deleted file mode 100644 index 2e4cc9f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/174 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/175 b/pre/docker/volumes/db/data/pgdata/base/4/175 deleted file mode 100644 index 15d51dd..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/175 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2187 b/pre/docker/volumes/db/data/pgdata/base/4/2187 deleted file mode 100644 index cf6377d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2187 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2224 b/pre/docker/volumes/db/data/pgdata/base/4/2224 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2228 b/pre/docker/volumes/db/data/pgdata/base/4/2228 deleted file mode 100644 index 738f259..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2228 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2328 b/pre/docker/volumes/db/data/pgdata/base/4/2328 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2336 b/pre/docker/volumes/db/data/pgdata/base/4/2336 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2337 b/pre/docker/volumes/db/data/pgdata/base/4/2337 deleted file mode 100644 index 105af49..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2337 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2579 b/pre/docker/volumes/db/data/pgdata/base/4/2579 deleted file mode 100644 index 408f92c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2579 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2600 b/pre/docker/volumes/db/data/pgdata/base/4/2600 deleted file mode 100644 index a1305d7..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2600 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2600_fsm b/pre/docker/volumes/db/data/pgdata/base/4/2600_fsm deleted file mode 100644 index b849084..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2600_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2600_vm b/pre/docker/volumes/db/data/pgdata/base/4/2600_vm deleted file mode 100644 index 5602ad8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2600_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2601 b/pre/docker/volumes/db/data/pgdata/base/4/2601 deleted file mode 100644 index d8001c8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2601 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2601_fsm b/pre/docker/volumes/db/data/pgdata/base/4/2601_fsm deleted file mode 100644 index d388044..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2601_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2601_vm b/pre/docker/volumes/db/data/pgdata/base/4/2601_vm deleted file mode 100644 index 10f4b77..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2601_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2602 b/pre/docker/volumes/db/data/pgdata/base/4/2602 deleted file mode 100644 index 4a27b0a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2602 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2602_fsm b/pre/docker/volumes/db/data/pgdata/base/4/2602_fsm deleted file mode 100644 index 23170d8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2602_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2602_vm b/pre/docker/volumes/db/data/pgdata/base/4/2602_vm deleted file mode 100644 index 690a9e0..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2602_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2603 b/pre/docker/volumes/db/data/pgdata/base/4/2603 deleted file mode 100644 index d511af5..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2603 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2603_fsm b/pre/docker/volumes/db/data/pgdata/base/4/2603_fsm deleted file mode 100644 index 949bd18..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2603_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2603_vm b/pre/docker/volumes/db/data/pgdata/base/4/2603_vm deleted file mode 100644 index 0a8338b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2603_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2604 b/pre/docker/volumes/db/data/pgdata/base/4/2604 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2605 b/pre/docker/volumes/db/data/pgdata/base/4/2605 deleted file mode 100644 index eeaa7ea..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2605 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2605_fsm b/pre/docker/volumes/db/data/pgdata/base/4/2605_fsm deleted file mode 100644 index f3b92bf..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2605_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2605_vm b/pre/docker/volumes/db/data/pgdata/base/4/2605_vm deleted file mode 100644 index 797bf33..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2605_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2606 b/pre/docker/volumes/db/data/pgdata/base/4/2606 deleted file mode 100644 index fbbb275..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2606 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2606_fsm b/pre/docker/volumes/db/data/pgdata/base/4/2606_fsm deleted file mode 100644 index 286dd81..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2606_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2606_vm b/pre/docker/volumes/db/data/pgdata/base/4/2606_vm deleted file mode 100644 index 5e8add1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2606_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2607 b/pre/docker/volumes/db/data/pgdata/base/4/2607 deleted file mode 100644 index bfad49a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2607 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2607_fsm b/pre/docker/volumes/db/data/pgdata/base/4/2607_fsm deleted file mode 100644 index 80ac8b1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2607_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2607_vm b/pre/docker/volumes/db/data/pgdata/base/4/2607_vm deleted file mode 100644 index ddb51bf..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2607_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2608 b/pre/docker/volumes/db/data/pgdata/base/4/2608 deleted file mode 100644 index afabc7e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2608 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2608_fsm b/pre/docker/volumes/db/data/pgdata/base/4/2608_fsm deleted file mode 100644 index 6ba89a4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2608_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2608_vm b/pre/docker/volumes/db/data/pgdata/base/4/2608_vm deleted file mode 100644 index 64dd4f8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2608_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2609 b/pre/docker/volumes/db/data/pgdata/base/4/2609 deleted file mode 100644 index 5138991..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2609 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2609_fsm b/pre/docker/volumes/db/data/pgdata/base/4/2609_fsm deleted file mode 100644 index 719a2c0..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2609_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2609_vm b/pre/docker/volumes/db/data/pgdata/base/4/2609_vm deleted file mode 100644 index 8ee8cae..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2609_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2610 b/pre/docker/volumes/db/data/pgdata/base/4/2610 deleted file mode 100644 index bacd316..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2610 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2610_fsm b/pre/docker/volumes/db/data/pgdata/base/4/2610_fsm deleted file mode 100644 index dbd22e1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2610_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2610_vm b/pre/docker/volumes/db/data/pgdata/base/4/2610_vm deleted file mode 100644 index c2d0be8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2610_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2611 b/pre/docker/volumes/db/data/pgdata/base/4/2611 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2612 b/pre/docker/volumes/db/data/pgdata/base/4/2612 deleted file mode 100644 index fb146ae..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2612 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2612_fsm b/pre/docker/volumes/db/data/pgdata/base/4/2612_fsm deleted file mode 100644 index 877976a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2612_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2612_vm b/pre/docker/volumes/db/data/pgdata/base/4/2612_vm deleted file mode 100644 index 343c8b8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2612_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2613 b/pre/docker/volumes/db/data/pgdata/base/4/2613 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2615 b/pre/docker/volumes/db/data/pgdata/base/4/2615 deleted file mode 100644 index 8eee470..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2615 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2615_fsm b/pre/docker/volumes/db/data/pgdata/base/4/2615_fsm deleted file mode 100644 index d041693..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2615_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2615_vm b/pre/docker/volumes/db/data/pgdata/base/4/2615_vm deleted file mode 100644 index 095a59a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2615_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2616 b/pre/docker/volumes/db/data/pgdata/base/4/2616 deleted file mode 100644 index 0d60d79..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2616 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2616_fsm b/pre/docker/volumes/db/data/pgdata/base/4/2616_fsm deleted file mode 100644 index cb924c9..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2616_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2616_vm b/pre/docker/volumes/db/data/pgdata/base/4/2616_vm deleted file mode 100644 index 248cc84..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2616_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2617 b/pre/docker/volumes/db/data/pgdata/base/4/2617 deleted file mode 100644 index bcdfc18..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2617 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2617_fsm b/pre/docker/volumes/db/data/pgdata/base/4/2617_fsm deleted file mode 100644 index 29d6066..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2617_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2617_vm b/pre/docker/volumes/db/data/pgdata/base/4/2617_vm deleted file mode 100644 index 2bc2a76..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2617_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2618 b/pre/docker/volumes/db/data/pgdata/base/4/2618 deleted file mode 100644 index bc86a25..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2618 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2618_fsm b/pre/docker/volumes/db/data/pgdata/base/4/2618_fsm deleted file mode 100644 index ea506fe..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2618_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2618_vm b/pre/docker/volumes/db/data/pgdata/base/4/2618_vm deleted file mode 100644 index 94fd479..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2618_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2619 b/pre/docker/volumes/db/data/pgdata/base/4/2619 deleted file mode 100644 index 58f1932..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2619 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2619_fsm b/pre/docker/volumes/db/data/pgdata/base/4/2619_fsm deleted file mode 100644 index c90e4c5..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2619_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2619_vm b/pre/docker/volumes/db/data/pgdata/base/4/2619_vm deleted file mode 100644 index 242b6a2..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2619_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2620 b/pre/docker/volumes/db/data/pgdata/base/4/2620 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2650 b/pre/docker/volumes/db/data/pgdata/base/4/2650 deleted file mode 100644 index 32ff8a1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2650 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2651 b/pre/docker/volumes/db/data/pgdata/base/4/2651 deleted file mode 100644 index cff86c7..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2651 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2652 b/pre/docker/volumes/db/data/pgdata/base/4/2652 deleted file mode 100644 index ab53706..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2652 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2653 b/pre/docker/volumes/db/data/pgdata/base/4/2653 deleted file mode 100644 index 86b0857..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2653 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2654 b/pre/docker/volumes/db/data/pgdata/base/4/2654 deleted file mode 100644 index 095a4fd..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2654 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2655 b/pre/docker/volumes/db/data/pgdata/base/4/2655 deleted file mode 100644 index 4b4b3cc..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2655 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2656 b/pre/docker/volumes/db/data/pgdata/base/4/2656 deleted file mode 100644 index 2fd9a71..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2656 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2657 b/pre/docker/volumes/db/data/pgdata/base/4/2657 deleted file mode 100644 index d0384dc..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2657 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2658 b/pre/docker/volumes/db/data/pgdata/base/4/2658 deleted file mode 100644 index 95a670a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2658 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2659 b/pre/docker/volumes/db/data/pgdata/base/4/2659 deleted file mode 100644 index 69c0b91..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2659 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2660 b/pre/docker/volumes/db/data/pgdata/base/4/2660 deleted file mode 100644 index fd66d22..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2660 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2661 b/pre/docker/volumes/db/data/pgdata/base/4/2661 deleted file mode 100644 index 3c62a6f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2661 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2662 b/pre/docker/volumes/db/data/pgdata/base/4/2662 deleted file mode 100644 index ba5df25..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2662 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2663 b/pre/docker/volumes/db/data/pgdata/base/4/2663 deleted file mode 100644 index e32f3b7..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2663 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2664 b/pre/docker/volumes/db/data/pgdata/base/4/2664 deleted file mode 100644 index ddc13e6..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2664 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2665 b/pre/docker/volumes/db/data/pgdata/base/4/2665 deleted file mode 100644 index 47894d3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2665 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2666 b/pre/docker/volumes/db/data/pgdata/base/4/2666 deleted file mode 100644 index fb71d0f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2666 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2667 b/pre/docker/volumes/db/data/pgdata/base/4/2667 deleted file mode 100644 index 36ec8bf..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2667 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2668 b/pre/docker/volumes/db/data/pgdata/base/4/2668 deleted file mode 100644 index 8ca1619..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2668 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2669 b/pre/docker/volumes/db/data/pgdata/base/4/2669 deleted file mode 100644 index b13c335..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2669 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2670 b/pre/docker/volumes/db/data/pgdata/base/4/2670 deleted file mode 100644 index 936feee..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2670 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2673 b/pre/docker/volumes/db/data/pgdata/base/4/2673 deleted file mode 100644 index 7e8ede8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2673 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2674 b/pre/docker/volumes/db/data/pgdata/base/4/2674 deleted file mode 100644 index ed27dfa..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2674 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2675 b/pre/docker/volumes/db/data/pgdata/base/4/2675 deleted file mode 100644 index f6aa99b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2675 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2678 b/pre/docker/volumes/db/data/pgdata/base/4/2678 deleted file mode 100644 index bfa546b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2678 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2679 b/pre/docker/volumes/db/data/pgdata/base/4/2679 deleted file mode 100644 index f93ede4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2679 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2680 b/pre/docker/volumes/db/data/pgdata/base/4/2680 deleted file mode 100644 index 0d352e9..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2680 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2681 b/pre/docker/volumes/db/data/pgdata/base/4/2681 deleted file mode 100644 index 1d1ec0d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2681 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2682 b/pre/docker/volumes/db/data/pgdata/base/4/2682 deleted file mode 100644 index 080bdb7..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2682 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2683 b/pre/docker/volumes/db/data/pgdata/base/4/2683 deleted file mode 100644 index 117ee7a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2683 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2684 b/pre/docker/volumes/db/data/pgdata/base/4/2684 deleted file mode 100644 index 657a2d2..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2684 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2685 b/pre/docker/volumes/db/data/pgdata/base/4/2685 deleted file mode 100644 index 38bcf1e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2685 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2686 b/pre/docker/volumes/db/data/pgdata/base/4/2686 deleted file mode 100644 index 3054a56..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2686 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2687 b/pre/docker/volumes/db/data/pgdata/base/4/2687 deleted file mode 100644 index 349490e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2687 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2688 b/pre/docker/volumes/db/data/pgdata/base/4/2688 deleted file mode 100644 index f00cec2..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2688 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2689 b/pre/docker/volumes/db/data/pgdata/base/4/2689 deleted file mode 100644 index 8329829..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2689 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2690 b/pre/docker/volumes/db/data/pgdata/base/4/2690 deleted file mode 100644 index 6fd86cd..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2690 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2691 b/pre/docker/volumes/db/data/pgdata/base/4/2691 deleted file mode 100644 index 15fd7ec..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2691 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2692 b/pre/docker/volumes/db/data/pgdata/base/4/2692 deleted file mode 100644 index b326e70..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2692 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2693 b/pre/docker/volumes/db/data/pgdata/base/4/2693 deleted file mode 100644 index 0fea372..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2693 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2696 b/pre/docker/volumes/db/data/pgdata/base/4/2696 deleted file mode 100644 index 5edd702..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2696 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2699 b/pre/docker/volumes/db/data/pgdata/base/4/2699 deleted file mode 100644 index 4a75520..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2699 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2701 b/pre/docker/volumes/db/data/pgdata/base/4/2701 deleted file mode 100644 index 82f5cd0..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2701 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2702 b/pre/docker/volumes/db/data/pgdata/base/4/2702 deleted file mode 100644 index 2d6a98c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2702 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2703 b/pre/docker/volumes/db/data/pgdata/base/4/2703 deleted file mode 100644 index 80744cf..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2703 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2704 b/pre/docker/volumes/db/data/pgdata/base/4/2704 deleted file mode 100644 index b1a80a9..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2704 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2753 b/pre/docker/volumes/db/data/pgdata/base/4/2753 deleted file mode 100644 index 3c16dff..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2753 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2753_fsm b/pre/docker/volumes/db/data/pgdata/base/4/2753_fsm deleted file mode 100644 index 642bce3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2753_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2753_vm b/pre/docker/volumes/db/data/pgdata/base/4/2753_vm deleted file mode 100644 index 0c0c4ec..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2753_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2754 b/pre/docker/volumes/db/data/pgdata/base/4/2754 deleted file mode 100644 index bdd4d52..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2754 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2755 b/pre/docker/volumes/db/data/pgdata/base/4/2755 deleted file mode 100644 index fd5d56a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2755 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2756 b/pre/docker/volumes/db/data/pgdata/base/4/2756 deleted file mode 100644 index 6a04474..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2756 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2757 b/pre/docker/volumes/db/data/pgdata/base/4/2757 deleted file mode 100644 index 8f9ccdf..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2757 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2830 b/pre/docker/volumes/db/data/pgdata/base/4/2830 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2831 b/pre/docker/volumes/db/data/pgdata/base/4/2831 deleted file mode 100644 index c0a407a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2831 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2832 b/pre/docker/volumes/db/data/pgdata/base/4/2832 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2833 b/pre/docker/volumes/db/data/pgdata/base/4/2833 deleted file mode 100644 index eea5df6..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2833 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2834 b/pre/docker/volumes/db/data/pgdata/base/4/2834 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2835 b/pre/docker/volumes/db/data/pgdata/base/4/2835 deleted file mode 100644 index 8aad135..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2835 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2836 b/pre/docker/volumes/db/data/pgdata/base/4/2836 deleted file mode 100644 index dfc3e5f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2836 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2836_fsm b/pre/docker/volumes/db/data/pgdata/base/4/2836_fsm deleted file mode 100644 index 6e81497..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2836_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2836_vm b/pre/docker/volumes/db/data/pgdata/base/4/2836_vm deleted file mode 100644 index c3e953d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2836_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2837 b/pre/docker/volumes/db/data/pgdata/base/4/2837 deleted file mode 100644 index 296554c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2837 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2838 b/pre/docker/volumes/db/data/pgdata/base/4/2838 deleted file mode 100644 index a87cdad..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2838 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2838_fsm b/pre/docker/volumes/db/data/pgdata/base/4/2838_fsm deleted file mode 100644 index 3bdb4f0..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2838_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2838_vm b/pre/docker/volumes/db/data/pgdata/base/4/2838_vm deleted file mode 100644 index a866243..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2838_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2839 b/pre/docker/volumes/db/data/pgdata/base/4/2839 deleted file mode 100644 index d56632d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2839 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2840 b/pre/docker/volumes/db/data/pgdata/base/4/2840 deleted file mode 100644 index ac55071..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2840 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2840_fsm b/pre/docker/volumes/db/data/pgdata/base/4/2840_fsm deleted file mode 100644 index 2c3cdd4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2840_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2840_vm b/pre/docker/volumes/db/data/pgdata/base/4/2840_vm deleted file mode 100644 index dcfdb61..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2840_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2841 b/pre/docker/volumes/db/data/pgdata/base/4/2841 deleted file mode 100644 index 7ecc9ce..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2841 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2995 b/pre/docker/volumes/db/data/pgdata/base/4/2995 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/2996 b/pre/docker/volumes/db/data/pgdata/base/4/2996 deleted file mode 100644 index 170333a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/2996 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3079 b/pre/docker/volumes/db/data/pgdata/base/4/3079 deleted file mode 100644 index f4049e3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3079 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3079_fsm b/pre/docker/volumes/db/data/pgdata/base/4/3079_fsm deleted file mode 100644 index 7732d22..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3079_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3079_vm b/pre/docker/volumes/db/data/pgdata/base/4/3079_vm deleted file mode 100644 index 301e78d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3079_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3080 b/pre/docker/volumes/db/data/pgdata/base/4/3080 deleted file mode 100644 index 7995abc..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3080 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3081 b/pre/docker/volumes/db/data/pgdata/base/4/3081 deleted file mode 100644 index ac634c2..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3081 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3085 b/pre/docker/volumes/db/data/pgdata/base/4/3085 deleted file mode 100644 index 83ad586..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3085 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3118 b/pre/docker/volumes/db/data/pgdata/base/4/3118 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3119 b/pre/docker/volumes/db/data/pgdata/base/4/3119 deleted file mode 100644 index db2bde0..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3119 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3164 b/pre/docker/volumes/db/data/pgdata/base/4/3164 deleted file mode 100644 index 4e8d798..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3164 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3256 b/pre/docker/volumes/db/data/pgdata/base/4/3256 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3257 b/pre/docker/volumes/db/data/pgdata/base/4/3257 deleted file mode 100644 index 64787da..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3257 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3258 b/pre/docker/volumes/db/data/pgdata/base/4/3258 deleted file mode 100644 index 09abe9b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3258 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3350 b/pre/docker/volumes/db/data/pgdata/base/4/3350 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3351 b/pre/docker/volumes/db/data/pgdata/base/4/3351 deleted file mode 100644 index 2bfef7f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3351 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3379 b/pre/docker/volumes/db/data/pgdata/base/4/3379 deleted file mode 100644 index caced87..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3379 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3380 b/pre/docker/volumes/db/data/pgdata/base/4/3380 deleted file mode 100644 index 55d6862..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3380 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3381 b/pre/docker/volumes/db/data/pgdata/base/4/3381 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3394 b/pre/docker/volumes/db/data/pgdata/base/4/3394 deleted file mode 100644 index 65482bf..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3394 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3394_fsm b/pre/docker/volumes/db/data/pgdata/base/4/3394_fsm deleted file mode 100644 index 9622a2f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3394_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3394_vm b/pre/docker/volumes/db/data/pgdata/base/4/3394_vm deleted file mode 100644 index de1d3e3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3394_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3395 b/pre/docker/volumes/db/data/pgdata/base/4/3395 deleted file mode 100644 index db3a504..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3395 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3429 b/pre/docker/volumes/db/data/pgdata/base/4/3429 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3430 b/pre/docker/volumes/db/data/pgdata/base/4/3430 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3431 b/pre/docker/volumes/db/data/pgdata/base/4/3431 deleted file mode 100644 index ce872ee..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3431 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3433 b/pre/docker/volumes/db/data/pgdata/base/4/3433 deleted file mode 100644 index 68ea223..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3433 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3439 b/pre/docker/volumes/db/data/pgdata/base/4/3439 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3440 b/pre/docker/volumes/db/data/pgdata/base/4/3440 deleted file mode 100644 index 0545e4b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3440 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3455 b/pre/docker/volumes/db/data/pgdata/base/4/3455 deleted file mode 100644 index fdccb1d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3455 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3456 b/pre/docker/volumes/db/data/pgdata/base/4/3456 deleted file mode 100644 index 3cbe2c4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3456 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3456_fsm b/pre/docker/volumes/db/data/pgdata/base/4/3456_fsm deleted file mode 100644 index 43f3901..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3456_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3456_vm b/pre/docker/volumes/db/data/pgdata/base/4/3456_vm deleted file mode 100644 index 74839d9..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3456_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3466 b/pre/docker/volumes/db/data/pgdata/base/4/3466 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3467 b/pre/docker/volumes/db/data/pgdata/base/4/3467 deleted file mode 100644 index c7016e1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3467 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3468 b/pre/docker/volumes/db/data/pgdata/base/4/3468 deleted file mode 100644 index fab333b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3468 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3501 b/pre/docker/volumes/db/data/pgdata/base/4/3501 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3502 b/pre/docker/volumes/db/data/pgdata/base/4/3502 deleted file mode 100644 index ece495c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3502 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3503 b/pre/docker/volumes/db/data/pgdata/base/4/3503 deleted file mode 100644 index 53f9b69..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3503 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3534 b/pre/docker/volumes/db/data/pgdata/base/4/3534 deleted file mode 100644 index 11fad3b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3534 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3541 b/pre/docker/volumes/db/data/pgdata/base/4/3541 deleted file mode 100644 index 40869ad..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3541 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3541_fsm b/pre/docker/volumes/db/data/pgdata/base/4/3541_fsm deleted file mode 100644 index a3a2de4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3541_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3541_vm b/pre/docker/volumes/db/data/pgdata/base/4/3541_vm deleted file mode 100644 index ff0a4fc..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3541_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3542 b/pre/docker/volumes/db/data/pgdata/base/4/3542 deleted file mode 100644 index ced0066..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3542 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3574 b/pre/docker/volumes/db/data/pgdata/base/4/3574 deleted file mode 100644 index b026df1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3574 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3575 b/pre/docker/volumes/db/data/pgdata/base/4/3575 deleted file mode 100644 index bdec532..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3575 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3576 b/pre/docker/volumes/db/data/pgdata/base/4/3576 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3596 b/pre/docker/volumes/db/data/pgdata/base/4/3596 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3597 b/pre/docker/volumes/db/data/pgdata/base/4/3597 deleted file mode 100644 index 08855a4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3597 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3598 b/pre/docker/volumes/db/data/pgdata/base/4/3598 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3599 b/pre/docker/volumes/db/data/pgdata/base/4/3599 deleted file mode 100644 index aaf3892..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3599 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3600 b/pre/docker/volumes/db/data/pgdata/base/4/3600 deleted file mode 100644 index 759a39d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3600 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3600_fsm b/pre/docker/volumes/db/data/pgdata/base/4/3600_fsm deleted file mode 100644 index cebec19..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3600_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3600_vm b/pre/docker/volumes/db/data/pgdata/base/4/3600_vm deleted file mode 100644 index a495b35..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3600_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3601 b/pre/docker/volumes/db/data/pgdata/base/4/3601 deleted file mode 100644 index 04c846e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3601 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3601_fsm b/pre/docker/volumes/db/data/pgdata/base/4/3601_fsm deleted file mode 100644 index 7732d22..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3601_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3601_vm b/pre/docker/volumes/db/data/pgdata/base/4/3601_vm deleted file mode 100644 index a8fb488..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3601_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3602 b/pre/docker/volumes/db/data/pgdata/base/4/3602 deleted file mode 100644 index 3d10dee..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3602 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3602_fsm b/pre/docker/volumes/db/data/pgdata/base/4/3602_fsm deleted file mode 100644 index d7897de..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3602_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3602_vm b/pre/docker/volumes/db/data/pgdata/base/4/3602_vm deleted file mode 100644 index 237f075..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3602_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3603 b/pre/docker/volumes/db/data/pgdata/base/4/3603 deleted file mode 100644 index 0cac665..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3603 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3603_fsm b/pre/docker/volumes/db/data/pgdata/base/4/3603_fsm deleted file mode 100644 index c28dd4f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3603_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3603_vm b/pre/docker/volumes/db/data/pgdata/base/4/3603_vm deleted file mode 100644 index 25fec69..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3603_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3604 b/pre/docker/volumes/db/data/pgdata/base/4/3604 deleted file mode 100644 index 763dfd0..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3604 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3605 b/pre/docker/volumes/db/data/pgdata/base/4/3605 deleted file mode 100644 index a30b070..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3605 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3606 b/pre/docker/volumes/db/data/pgdata/base/4/3606 deleted file mode 100644 index abe7a1c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3606 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3607 b/pre/docker/volumes/db/data/pgdata/base/4/3607 deleted file mode 100644 index e3a3bbc..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3607 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3608 b/pre/docker/volumes/db/data/pgdata/base/4/3608 deleted file mode 100644 index 1e7673b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3608 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3609 b/pre/docker/volumes/db/data/pgdata/base/4/3609 deleted file mode 100644 index 1fd5845..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3609 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3712 b/pre/docker/volumes/db/data/pgdata/base/4/3712 deleted file mode 100644 index 6d3b145..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3712 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3764 b/pre/docker/volumes/db/data/pgdata/base/4/3764 deleted file mode 100644 index 61e4c75..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3764 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3764_fsm b/pre/docker/volumes/db/data/pgdata/base/4/3764_fsm deleted file mode 100644 index f64db4d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3764_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3764_vm b/pre/docker/volumes/db/data/pgdata/base/4/3764_vm deleted file mode 100644 index 9f6161e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3764_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3766 b/pre/docker/volumes/db/data/pgdata/base/4/3766 deleted file mode 100644 index d2ee302..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3766 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3767 b/pre/docker/volumes/db/data/pgdata/base/4/3767 deleted file mode 100644 index 07b30e9..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3767 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/3997 b/pre/docker/volumes/db/data/pgdata/base/4/3997 deleted file mode 100644 index 8969d81..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/3997 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/4143 b/pre/docker/volumes/db/data/pgdata/base/4/4143 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/4144 b/pre/docker/volumes/db/data/pgdata/base/4/4144 deleted file mode 100644 index 5188a14..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/4144 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/4145 b/pre/docker/volumes/db/data/pgdata/base/4/4145 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/4146 b/pre/docker/volumes/db/data/pgdata/base/4/4146 deleted file mode 100644 index 957732f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/4146 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/4147 b/pre/docker/volumes/db/data/pgdata/base/4/4147 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/4148 b/pre/docker/volumes/db/data/pgdata/base/4/4148 deleted file mode 100644 index 9c7057c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/4148 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/4149 b/pre/docker/volumes/db/data/pgdata/base/4/4149 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/4150 b/pre/docker/volumes/db/data/pgdata/base/4/4150 deleted file mode 100644 index 390d428..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/4150 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/4151 b/pre/docker/volumes/db/data/pgdata/base/4/4151 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/4152 b/pre/docker/volumes/db/data/pgdata/base/4/4152 deleted file mode 100644 index 1a289fd..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/4152 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/4153 b/pre/docker/volumes/db/data/pgdata/base/4/4153 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/4154 b/pre/docker/volumes/db/data/pgdata/base/4/4154 deleted file mode 100644 index d0d1ca5..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/4154 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/4155 b/pre/docker/volumes/db/data/pgdata/base/4/4155 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/4156 b/pre/docker/volumes/db/data/pgdata/base/4/4156 deleted file mode 100644 index 5b4bf37..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/4156 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/4157 b/pre/docker/volumes/db/data/pgdata/base/4/4157 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/4158 b/pre/docker/volumes/db/data/pgdata/base/4/4158 deleted file mode 100644 index 937d3d2..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/4158 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/4159 b/pre/docker/volumes/db/data/pgdata/base/4/4159 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/4160 b/pre/docker/volumes/db/data/pgdata/base/4/4160 deleted file mode 100644 index d10cfd6..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/4160 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/4163 b/pre/docker/volumes/db/data/pgdata/base/4/4163 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/4164 b/pre/docker/volumes/db/data/pgdata/base/4/4164 deleted file mode 100644 index a94c963..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/4164 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/4165 b/pre/docker/volumes/db/data/pgdata/base/4/4165 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/4166 b/pre/docker/volumes/db/data/pgdata/base/4/4166 deleted file mode 100644 index 2229586..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/4166 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/4167 b/pre/docker/volumes/db/data/pgdata/base/4/4167 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/4168 b/pre/docker/volumes/db/data/pgdata/base/4/4168 deleted file mode 100644 index 472740b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/4168 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/4169 b/pre/docker/volumes/db/data/pgdata/base/4/4169 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/4170 b/pre/docker/volumes/db/data/pgdata/base/4/4170 deleted file mode 100644 index 88d09b3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/4170 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/4171 b/pre/docker/volumes/db/data/pgdata/base/4/4171 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/4172 b/pre/docker/volumes/db/data/pgdata/base/4/4172 deleted file mode 100644 index 3eed1ee..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/4172 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/4173 b/pre/docker/volumes/db/data/pgdata/base/4/4173 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/4174 b/pre/docker/volumes/db/data/pgdata/base/4/4174 deleted file mode 100644 index a0819a2..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/4174 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/5002 b/pre/docker/volumes/db/data/pgdata/base/4/5002 deleted file mode 100644 index aefa40d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/5002 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/548 b/pre/docker/volumes/db/data/pgdata/base/4/548 deleted file mode 100644 index 7c6567d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/548 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/549 b/pre/docker/volumes/db/data/pgdata/base/4/549 deleted file mode 100644 index 26a3887..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/549 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/6102 b/pre/docker/volumes/db/data/pgdata/base/4/6102 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/6104 b/pre/docker/volumes/db/data/pgdata/base/4/6104 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/6106 b/pre/docker/volumes/db/data/pgdata/base/4/6106 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/6110 b/pre/docker/volumes/db/data/pgdata/base/4/6110 deleted file mode 100644 index 42e1920..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/6110 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/6111 b/pre/docker/volumes/db/data/pgdata/base/4/6111 deleted file mode 100644 index d012727..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/6111 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/6112 b/pre/docker/volumes/db/data/pgdata/base/4/6112 deleted file mode 100644 index 293367c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/6112 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/6113 b/pre/docker/volumes/db/data/pgdata/base/4/6113 deleted file mode 100644 index 542f8fa..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/6113 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/6116 b/pre/docker/volumes/db/data/pgdata/base/4/6116 deleted file mode 100644 index 787d5d1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/6116 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/6117 b/pre/docker/volumes/db/data/pgdata/base/4/6117 deleted file mode 100644 index 2b5656b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/6117 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/6175 b/pre/docker/volumes/db/data/pgdata/base/4/6175 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/6176 b/pre/docker/volumes/db/data/pgdata/base/4/6176 deleted file mode 100644 index bfd14df..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/6176 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/6228 b/pre/docker/volumes/db/data/pgdata/base/4/6228 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/6229 b/pre/docker/volumes/db/data/pgdata/base/4/6229 deleted file mode 100644 index 5d03213..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/6229 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/6237 b/pre/docker/volumes/db/data/pgdata/base/4/6237 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/6238 b/pre/docker/volumes/db/data/pgdata/base/4/6238 deleted file mode 100644 index e7c0e8c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/6238 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/6239 b/pre/docker/volumes/db/data/pgdata/base/4/6239 deleted file mode 100644 index 6c60b50..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/6239 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/826 b/pre/docker/volumes/db/data/pgdata/base/4/826 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/827 b/pre/docker/volumes/db/data/pgdata/base/4/827 deleted file mode 100644 index 94a900e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/827 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/828 b/pre/docker/volumes/db/data/pgdata/base/4/828 deleted file mode 100644 index ca30461..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/828 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/4/PG_VERSION b/pre/docker/volumes/db/data/pgdata/base/4/PG_VERSION deleted file mode 100644 index 60d3b2f..0000000 --- a/pre/docker/volumes/db/data/pgdata/base/4/PG_VERSION +++ /dev/null @@ -1 +0,0 @@ -15 diff --git a/pre/docker/volumes/db/data/pgdata/base/4/pg_filenode.map b/pre/docker/volumes/db/data/pgdata/base/4/pg_filenode.map deleted file mode 100644 index 193d78f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/4/pg_filenode.map and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/112 b/pre/docker/volumes/db/data/pgdata/base/5/112 deleted file mode 100644 index 784a4c1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/112 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/113 b/pre/docker/volumes/db/data/pgdata/base/5/113 deleted file mode 100644 index cc2c412..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/113 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/1247 b/pre/docker/volumes/db/data/pgdata/base/5/1247 deleted file mode 100644 index 7334f8f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/1247 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/1247_fsm b/pre/docker/volumes/db/data/pgdata/base/5/1247_fsm deleted file mode 100644 index d9ff302..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/1247_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/1247_vm b/pre/docker/volumes/db/data/pgdata/base/5/1247_vm deleted file mode 100644 index 79164da..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/1247_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/1249 b/pre/docker/volumes/db/data/pgdata/base/5/1249 deleted file mode 100644 index d03c7f7..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/1249 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/1249_fsm b/pre/docker/volumes/db/data/pgdata/base/5/1249_fsm deleted file mode 100644 index 87def57..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/1249_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/1249_vm b/pre/docker/volumes/db/data/pgdata/base/5/1249_vm deleted file mode 100644 index 960d107..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/1249_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/1255 b/pre/docker/volumes/db/data/pgdata/base/5/1255 deleted file mode 100644 index b55d7e5..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/1255 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/1255_fsm b/pre/docker/volumes/db/data/pgdata/base/5/1255_fsm deleted file mode 100644 index 5abeaaf..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/1255_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/1255_vm b/pre/docker/volumes/db/data/pgdata/base/5/1255_vm deleted file mode 100644 index 964a2f4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/1255_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/1259 b/pre/docker/volumes/db/data/pgdata/base/5/1259 deleted file mode 100644 index e1cfb7c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/1259 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/1259_fsm b/pre/docker/volumes/db/data/pgdata/base/5/1259_fsm deleted file mode 100644 index bb60b30..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/1259_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/1259_vm b/pre/docker/volumes/db/data/pgdata/base/5/1259_vm deleted file mode 100644 index ecd6d00..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/1259_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/13436 b/pre/docker/volumes/db/data/pgdata/base/5/13436 deleted file mode 100644 index 3999484..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/13436 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/13436_fsm b/pre/docker/volumes/db/data/pgdata/base/5/13436_fsm deleted file mode 100644 index dff9611..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/13436_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/13436_vm b/pre/docker/volumes/db/data/pgdata/base/5/13436_vm deleted file mode 100644 index 8c7c7fa..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/13436_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/13439 b/pre/docker/volumes/db/data/pgdata/base/5/13439 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/13440 b/pre/docker/volumes/db/data/pgdata/base/5/13440 deleted file mode 100644 index ec37b03..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/13440 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/13441 b/pre/docker/volumes/db/data/pgdata/base/5/13441 deleted file mode 100644 index 281c6bb..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/13441 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/13441_fsm b/pre/docker/volumes/db/data/pgdata/base/5/13441_fsm deleted file mode 100644 index 70d16ce..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/13441_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/13441_vm b/pre/docker/volumes/db/data/pgdata/base/5/13441_vm deleted file mode 100644 index 7af7e21..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/13441_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/13444 b/pre/docker/volumes/db/data/pgdata/base/5/13444 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/13445 b/pre/docker/volumes/db/data/pgdata/base/5/13445 deleted file mode 100644 index f4bebf3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/13445 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/13446 b/pre/docker/volumes/db/data/pgdata/base/5/13446 deleted file mode 100644 index 4e6888c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/13446 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/13446_fsm b/pre/docker/volumes/db/data/pgdata/base/5/13446_fsm deleted file mode 100644 index d388044..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/13446_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/13446_vm b/pre/docker/volumes/db/data/pgdata/base/5/13446_vm deleted file mode 100644 index 08b51fd..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/13446_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/13449 b/pre/docker/volumes/db/data/pgdata/base/5/13449 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/13450 b/pre/docker/volumes/db/data/pgdata/base/5/13450 deleted file mode 100644 index 1127ac4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/13450 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/13451 b/pre/docker/volumes/db/data/pgdata/base/5/13451 deleted file mode 100644 index fbd871f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/13451 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/13451_fsm b/pre/docker/volumes/db/data/pgdata/base/5/13451_fsm deleted file mode 100644 index a836ddf..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/13451_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/13451_vm b/pre/docker/volumes/db/data/pgdata/base/5/13451_vm deleted file mode 100644 index 2ce6938..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/13451_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/13454 b/pre/docker/volumes/db/data/pgdata/base/5/13454 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/13455 b/pre/docker/volumes/db/data/pgdata/base/5/13455 deleted file mode 100644 index ec7333c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/13455 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/1417 b/pre/docker/volumes/db/data/pgdata/base/5/1417 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/1418 b/pre/docker/volumes/db/data/pgdata/base/5/1418 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/174 b/pre/docker/volumes/db/data/pgdata/base/5/174 deleted file mode 100644 index 2e4cc9f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/174 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/175 b/pre/docker/volumes/db/data/pgdata/base/5/175 deleted file mode 100644 index 15d51dd..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/175 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2187 b/pre/docker/volumes/db/data/pgdata/base/5/2187 deleted file mode 100644 index cf6377d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2187 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2224 b/pre/docker/volumes/db/data/pgdata/base/5/2224 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2228 b/pre/docker/volumes/db/data/pgdata/base/5/2228 deleted file mode 100644 index 738f259..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2228 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2328 b/pre/docker/volumes/db/data/pgdata/base/5/2328 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2336 b/pre/docker/volumes/db/data/pgdata/base/5/2336 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2337 b/pre/docker/volumes/db/data/pgdata/base/5/2337 deleted file mode 100644 index 105af49..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2337 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2579 b/pre/docker/volumes/db/data/pgdata/base/5/2579 deleted file mode 100644 index 408f92c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2579 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2600 b/pre/docker/volumes/db/data/pgdata/base/5/2600 deleted file mode 100644 index a1305d7..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2600 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2600_fsm b/pre/docker/volumes/db/data/pgdata/base/5/2600_fsm deleted file mode 100644 index b849084..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2600_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2600_vm b/pre/docker/volumes/db/data/pgdata/base/5/2600_vm deleted file mode 100644 index 5602ad8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2600_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2601 b/pre/docker/volumes/db/data/pgdata/base/5/2601 deleted file mode 100644 index d8001c8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2601 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2601_fsm b/pre/docker/volumes/db/data/pgdata/base/5/2601_fsm deleted file mode 100644 index d388044..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2601_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2601_vm b/pre/docker/volumes/db/data/pgdata/base/5/2601_vm deleted file mode 100644 index 10f4b77..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2601_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2602 b/pre/docker/volumes/db/data/pgdata/base/5/2602 deleted file mode 100644 index 4a27b0a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2602 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2602_fsm b/pre/docker/volumes/db/data/pgdata/base/5/2602_fsm deleted file mode 100644 index 23170d8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2602_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2602_vm b/pre/docker/volumes/db/data/pgdata/base/5/2602_vm deleted file mode 100644 index 690a9e0..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2602_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2603 b/pre/docker/volumes/db/data/pgdata/base/5/2603 deleted file mode 100644 index d511af5..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2603 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2603_fsm b/pre/docker/volumes/db/data/pgdata/base/5/2603_fsm deleted file mode 100644 index 949bd18..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2603_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2603_vm b/pre/docker/volumes/db/data/pgdata/base/5/2603_vm deleted file mode 100644 index 0a8338b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2603_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2604 b/pre/docker/volumes/db/data/pgdata/base/5/2604 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2605 b/pre/docker/volumes/db/data/pgdata/base/5/2605 deleted file mode 100644 index eeaa7ea..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2605 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2605_fsm b/pre/docker/volumes/db/data/pgdata/base/5/2605_fsm deleted file mode 100644 index f3b92bf..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2605_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2605_vm b/pre/docker/volumes/db/data/pgdata/base/5/2605_vm deleted file mode 100644 index 797bf33..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2605_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2606 b/pre/docker/volumes/db/data/pgdata/base/5/2606 deleted file mode 100644 index fbbb275..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2606 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2606_fsm b/pre/docker/volumes/db/data/pgdata/base/5/2606_fsm deleted file mode 100644 index 286dd81..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2606_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2606_vm b/pre/docker/volumes/db/data/pgdata/base/5/2606_vm deleted file mode 100644 index 5e8add1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2606_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2607 b/pre/docker/volumes/db/data/pgdata/base/5/2607 deleted file mode 100644 index bfad49a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2607 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2607_fsm b/pre/docker/volumes/db/data/pgdata/base/5/2607_fsm deleted file mode 100644 index 80ac8b1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2607_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2607_vm b/pre/docker/volumes/db/data/pgdata/base/5/2607_vm deleted file mode 100644 index ddb51bf..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2607_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2608 b/pre/docker/volumes/db/data/pgdata/base/5/2608 deleted file mode 100644 index afabc7e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2608 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2608_fsm b/pre/docker/volumes/db/data/pgdata/base/5/2608_fsm deleted file mode 100644 index 6ba89a4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2608_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2608_vm b/pre/docker/volumes/db/data/pgdata/base/5/2608_vm deleted file mode 100644 index 64dd4f8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2608_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2609 b/pre/docker/volumes/db/data/pgdata/base/5/2609 deleted file mode 100644 index 5138991..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2609 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2609_fsm b/pre/docker/volumes/db/data/pgdata/base/5/2609_fsm deleted file mode 100644 index 719a2c0..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2609_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2609_vm b/pre/docker/volumes/db/data/pgdata/base/5/2609_vm deleted file mode 100644 index 8ee8cae..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2609_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2610 b/pre/docker/volumes/db/data/pgdata/base/5/2610 deleted file mode 100644 index bacd316..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2610 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2610_fsm b/pre/docker/volumes/db/data/pgdata/base/5/2610_fsm deleted file mode 100644 index dbd22e1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2610_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2610_vm b/pre/docker/volumes/db/data/pgdata/base/5/2610_vm deleted file mode 100644 index c2d0be8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2610_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2611 b/pre/docker/volumes/db/data/pgdata/base/5/2611 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2612 b/pre/docker/volumes/db/data/pgdata/base/5/2612 deleted file mode 100644 index fb146ae..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2612 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2612_fsm b/pre/docker/volumes/db/data/pgdata/base/5/2612_fsm deleted file mode 100644 index 877976a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2612_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2612_vm b/pre/docker/volumes/db/data/pgdata/base/5/2612_vm deleted file mode 100644 index 343c8b8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2612_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2613 b/pre/docker/volumes/db/data/pgdata/base/5/2613 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2615 b/pre/docker/volumes/db/data/pgdata/base/5/2615 deleted file mode 100644 index 8eee470..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2615 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2615_fsm b/pre/docker/volumes/db/data/pgdata/base/5/2615_fsm deleted file mode 100644 index d041693..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2615_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2615_vm b/pre/docker/volumes/db/data/pgdata/base/5/2615_vm deleted file mode 100644 index 095a59a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2615_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2616 b/pre/docker/volumes/db/data/pgdata/base/5/2616 deleted file mode 100644 index 0d60d79..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2616 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2616_fsm b/pre/docker/volumes/db/data/pgdata/base/5/2616_fsm deleted file mode 100644 index cb924c9..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2616_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2616_vm b/pre/docker/volumes/db/data/pgdata/base/5/2616_vm deleted file mode 100644 index 248cc84..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2616_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2617 b/pre/docker/volumes/db/data/pgdata/base/5/2617 deleted file mode 100644 index bcdfc18..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2617 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2617_fsm b/pre/docker/volumes/db/data/pgdata/base/5/2617_fsm deleted file mode 100644 index 29d6066..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2617_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2617_vm b/pre/docker/volumes/db/data/pgdata/base/5/2617_vm deleted file mode 100644 index 2bc2a76..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2617_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2618 b/pre/docker/volumes/db/data/pgdata/base/5/2618 deleted file mode 100644 index bc86a25..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2618 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2618_fsm b/pre/docker/volumes/db/data/pgdata/base/5/2618_fsm deleted file mode 100644 index ea506fe..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2618_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2618_vm b/pre/docker/volumes/db/data/pgdata/base/5/2618_vm deleted file mode 100644 index 94fd479..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2618_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2619 b/pre/docker/volumes/db/data/pgdata/base/5/2619 deleted file mode 100644 index 58f1932..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2619 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2619_fsm b/pre/docker/volumes/db/data/pgdata/base/5/2619_fsm deleted file mode 100644 index c90e4c5..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2619_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2619_vm b/pre/docker/volumes/db/data/pgdata/base/5/2619_vm deleted file mode 100644 index 242b6a2..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2619_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2620 b/pre/docker/volumes/db/data/pgdata/base/5/2620 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2650 b/pre/docker/volumes/db/data/pgdata/base/5/2650 deleted file mode 100644 index 32ff8a1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2650 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2651 b/pre/docker/volumes/db/data/pgdata/base/5/2651 deleted file mode 100644 index cff86c7..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2651 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2652 b/pre/docker/volumes/db/data/pgdata/base/5/2652 deleted file mode 100644 index ab53706..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2652 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2653 b/pre/docker/volumes/db/data/pgdata/base/5/2653 deleted file mode 100644 index 86b0857..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2653 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2654 b/pre/docker/volumes/db/data/pgdata/base/5/2654 deleted file mode 100644 index 095a4fd..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2654 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2655 b/pre/docker/volumes/db/data/pgdata/base/5/2655 deleted file mode 100644 index 4b4b3cc..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2655 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2656 b/pre/docker/volumes/db/data/pgdata/base/5/2656 deleted file mode 100644 index 2fd9a71..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2656 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2657 b/pre/docker/volumes/db/data/pgdata/base/5/2657 deleted file mode 100644 index d0384dc..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2657 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2658 b/pre/docker/volumes/db/data/pgdata/base/5/2658 deleted file mode 100644 index 95a670a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2658 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2659 b/pre/docker/volumes/db/data/pgdata/base/5/2659 deleted file mode 100644 index 69c0b91..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2659 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2660 b/pre/docker/volumes/db/data/pgdata/base/5/2660 deleted file mode 100644 index fd66d22..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2660 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2661 b/pre/docker/volumes/db/data/pgdata/base/5/2661 deleted file mode 100644 index 3c62a6f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2661 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2662 b/pre/docker/volumes/db/data/pgdata/base/5/2662 deleted file mode 100644 index ba5df25..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2662 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2663 b/pre/docker/volumes/db/data/pgdata/base/5/2663 deleted file mode 100644 index e32f3b7..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2663 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2664 b/pre/docker/volumes/db/data/pgdata/base/5/2664 deleted file mode 100644 index ddc13e6..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2664 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2665 b/pre/docker/volumes/db/data/pgdata/base/5/2665 deleted file mode 100644 index 47894d3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2665 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2666 b/pre/docker/volumes/db/data/pgdata/base/5/2666 deleted file mode 100644 index fb71d0f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2666 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2667 b/pre/docker/volumes/db/data/pgdata/base/5/2667 deleted file mode 100644 index 36ec8bf..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2667 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2668 b/pre/docker/volumes/db/data/pgdata/base/5/2668 deleted file mode 100644 index 8ca1619..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2668 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2669 b/pre/docker/volumes/db/data/pgdata/base/5/2669 deleted file mode 100644 index b13c335..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2669 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2670 b/pre/docker/volumes/db/data/pgdata/base/5/2670 deleted file mode 100644 index 936feee..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2670 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2673 b/pre/docker/volumes/db/data/pgdata/base/5/2673 deleted file mode 100644 index 7e8ede8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2673 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2674 b/pre/docker/volumes/db/data/pgdata/base/5/2674 deleted file mode 100644 index ed27dfa..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2674 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2675 b/pre/docker/volumes/db/data/pgdata/base/5/2675 deleted file mode 100644 index f6aa99b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2675 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2678 b/pre/docker/volumes/db/data/pgdata/base/5/2678 deleted file mode 100644 index bfa546b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2678 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2679 b/pre/docker/volumes/db/data/pgdata/base/5/2679 deleted file mode 100644 index f93ede4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2679 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2680 b/pre/docker/volumes/db/data/pgdata/base/5/2680 deleted file mode 100644 index 0d352e9..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2680 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2681 b/pre/docker/volumes/db/data/pgdata/base/5/2681 deleted file mode 100644 index 1d1ec0d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2681 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2682 b/pre/docker/volumes/db/data/pgdata/base/5/2682 deleted file mode 100644 index 080bdb7..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2682 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2683 b/pre/docker/volumes/db/data/pgdata/base/5/2683 deleted file mode 100644 index 117ee7a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2683 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2684 b/pre/docker/volumes/db/data/pgdata/base/5/2684 deleted file mode 100644 index 657a2d2..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2684 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2685 b/pre/docker/volumes/db/data/pgdata/base/5/2685 deleted file mode 100644 index 38bcf1e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2685 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2686 b/pre/docker/volumes/db/data/pgdata/base/5/2686 deleted file mode 100644 index 3054a56..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2686 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2687 b/pre/docker/volumes/db/data/pgdata/base/5/2687 deleted file mode 100644 index 349490e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2687 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2688 b/pre/docker/volumes/db/data/pgdata/base/5/2688 deleted file mode 100644 index f00cec2..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2688 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2689 b/pre/docker/volumes/db/data/pgdata/base/5/2689 deleted file mode 100644 index 8329829..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2689 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2690 b/pre/docker/volumes/db/data/pgdata/base/5/2690 deleted file mode 100644 index 6fd86cd..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2690 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2691 b/pre/docker/volumes/db/data/pgdata/base/5/2691 deleted file mode 100644 index 15fd7ec..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2691 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2692 b/pre/docker/volumes/db/data/pgdata/base/5/2692 deleted file mode 100644 index b326e70..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2692 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2693 b/pre/docker/volumes/db/data/pgdata/base/5/2693 deleted file mode 100644 index 0fea372..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2693 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2696 b/pre/docker/volumes/db/data/pgdata/base/5/2696 deleted file mode 100644 index 5edd702..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2696 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2699 b/pre/docker/volumes/db/data/pgdata/base/5/2699 deleted file mode 100644 index 4a75520..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2699 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2701 b/pre/docker/volumes/db/data/pgdata/base/5/2701 deleted file mode 100644 index 82f5cd0..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2701 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2702 b/pre/docker/volumes/db/data/pgdata/base/5/2702 deleted file mode 100644 index 2d6a98c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2702 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2703 b/pre/docker/volumes/db/data/pgdata/base/5/2703 deleted file mode 100644 index 80744cf..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2703 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2704 b/pre/docker/volumes/db/data/pgdata/base/5/2704 deleted file mode 100644 index b1a80a9..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2704 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2753 b/pre/docker/volumes/db/data/pgdata/base/5/2753 deleted file mode 100644 index 3c16dff..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2753 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2753_fsm b/pre/docker/volumes/db/data/pgdata/base/5/2753_fsm deleted file mode 100644 index 642bce3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2753_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2753_vm b/pre/docker/volumes/db/data/pgdata/base/5/2753_vm deleted file mode 100644 index 0c0c4ec..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2753_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2754 b/pre/docker/volumes/db/data/pgdata/base/5/2754 deleted file mode 100644 index bdd4d52..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2754 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2755 b/pre/docker/volumes/db/data/pgdata/base/5/2755 deleted file mode 100644 index fd5d56a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2755 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2756 b/pre/docker/volumes/db/data/pgdata/base/5/2756 deleted file mode 100644 index 6a04474..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2756 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2757 b/pre/docker/volumes/db/data/pgdata/base/5/2757 deleted file mode 100644 index 8f9ccdf..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2757 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2830 b/pre/docker/volumes/db/data/pgdata/base/5/2830 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2831 b/pre/docker/volumes/db/data/pgdata/base/5/2831 deleted file mode 100644 index c0a407a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2831 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2832 b/pre/docker/volumes/db/data/pgdata/base/5/2832 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2833 b/pre/docker/volumes/db/data/pgdata/base/5/2833 deleted file mode 100644 index eea5df6..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2833 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2834 b/pre/docker/volumes/db/data/pgdata/base/5/2834 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2835 b/pre/docker/volumes/db/data/pgdata/base/5/2835 deleted file mode 100644 index 8aad135..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2835 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2836 b/pre/docker/volumes/db/data/pgdata/base/5/2836 deleted file mode 100644 index dfc3e5f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2836 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2836_fsm b/pre/docker/volumes/db/data/pgdata/base/5/2836_fsm deleted file mode 100644 index 6e81497..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2836_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2836_vm b/pre/docker/volumes/db/data/pgdata/base/5/2836_vm deleted file mode 100644 index c3e953d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2836_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2837 b/pre/docker/volumes/db/data/pgdata/base/5/2837 deleted file mode 100644 index 296554c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2837 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2838 b/pre/docker/volumes/db/data/pgdata/base/5/2838 deleted file mode 100644 index a87cdad..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2838 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2838_fsm b/pre/docker/volumes/db/data/pgdata/base/5/2838_fsm deleted file mode 100644 index 3bdb4f0..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2838_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2838_vm b/pre/docker/volumes/db/data/pgdata/base/5/2838_vm deleted file mode 100644 index a866243..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2838_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2839 b/pre/docker/volumes/db/data/pgdata/base/5/2839 deleted file mode 100644 index d56632d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2839 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2840 b/pre/docker/volumes/db/data/pgdata/base/5/2840 deleted file mode 100644 index ac55071..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2840 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2840_fsm b/pre/docker/volumes/db/data/pgdata/base/5/2840_fsm deleted file mode 100644 index 2c3cdd4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2840_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2840_vm b/pre/docker/volumes/db/data/pgdata/base/5/2840_vm deleted file mode 100644 index dcfdb61..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2840_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2841 b/pre/docker/volumes/db/data/pgdata/base/5/2841 deleted file mode 100644 index 7ecc9ce..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2841 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2995 b/pre/docker/volumes/db/data/pgdata/base/5/2995 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/2996 b/pre/docker/volumes/db/data/pgdata/base/5/2996 deleted file mode 100644 index 170333a..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/2996 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3079 b/pre/docker/volumes/db/data/pgdata/base/5/3079 deleted file mode 100644 index f4049e3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3079 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3079_fsm b/pre/docker/volumes/db/data/pgdata/base/5/3079_fsm deleted file mode 100644 index 7732d22..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3079_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3079_vm b/pre/docker/volumes/db/data/pgdata/base/5/3079_vm deleted file mode 100644 index 301e78d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3079_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3080 b/pre/docker/volumes/db/data/pgdata/base/5/3080 deleted file mode 100644 index 7995abc..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3080 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3081 b/pre/docker/volumes/db/data/pgdata/base/5/3081 deleted file mode 100644 index ac634c2..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3081 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3085 b/pre/docker/volumes/db/data/pgdata/base/5/3085 deleted file mode 100644 index 83ad586..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3085 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3118 b/pre/docker/volumes/db/data/pgdata/base/5/3118 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3119 b/pre/docker/volumes/db/data/pgdata/base/5/3119 deleted file mode 100644 index db2bde0..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3119 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3164 b/pre/docker/volumes/db/data/pgdata/base/5/3164 deleted file mode 100644 index 4e8d798..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3164 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3256 b/pre/docker/volumes/db/data/pgdata/base/5/3256 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3257 b/pre/docker/volumes/db/data/pgdata/base/5/3257 deleted file mode 100644 index 64787da..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3257 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3258 b/pre/docker/volumes/db/data/pgdata/base/5/3258 deleted file mode 100644 index 09abe9b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3258 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3350 b/pre/docker/volumes/db/data/pgdata/base/5/3350 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3351 b/pre/docker/volumes/db/data/pgdata/base/5/3351 deleted file mode 100644 index 2bfef7f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3351 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3379 b/pre/docker/volumes/db/data/pgdata/base/5/3379 deleted file mode 100644 index caced87..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3379 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3380 b/pre/docker/volumes/db/data/pgdata/base/5/3380 deleted file mode 100644 index 55d6862..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3380 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3381 b/pre/docker/volumes/db/data/pgdata/base/5/3381 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3394 b/pre/docker/volumes/db/data/pgdata/base/5/3394 deleted file mode 100644 index 65482bf..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3394 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3394_fsm b/pre/docker/volumes/db/data/pgdata/base/5/3394_fsm deleted file mode 100644 index 9622a2f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3394_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3394_vm b/pre/docker/volumes/db/data/pgdata/base/5/3394_vm deleted file mode 100644 index de1d3e3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3394_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3395 b/pre/docker/volumes/db/data/pgdata/base/5/3395 deleted file mode 100644 index db3a504..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3395 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3429 b/pre/docker/volumes/db/data/pgdata/base/5/3429 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3430 b/pre/docker/volumes/db/data/pgdata/base/5/3430 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3431 b/pre/docker/volumes/db/data/pgdata/base/5/3431 deleted file mode 100644 index ce872ee..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3431 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3433 b/pre/docker/volumes/db/data/pgdata/base/5/3433 deleted file mode 100644 index 68ea223..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3433 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3439 b/pre/docker/volumes/db/data/pgdata/base/5/3439 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3440 b/pre/docker/volumes/db/data/pgdata/base/5/3440 deleted file mode 100644 index 0545e4b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3440 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3455 b/pre/docker/volumes/db/data/pgdata/base/5/3455 deleted file mode 100644 index fdccb1d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3455 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3456 b/pre/docker/volumes/db/data/pgdata/base/5/3456 deleted file mode 100644 index 3cbe2c4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3456 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3456_fsm b/pre/docker/volumes/db/data/pgdata/base/5/3456_fsm deleted file mode 100644 index 43f3901..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3456_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3456_vm b/pre/docker/volumes/db/data/pgdata/base/5/3456_vm deleted file mode 100644 index 74839d9..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3456_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3466 b/pre/docker/volumes/db/data/pgdata/base/5/3466 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3467 b/pre/docker/volumes/db/data/pgdata/base/5/3467 deleted file mode 100644 index c7016e1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3467 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3468 b/pre/docker/volumes/db/data/pgdata/base/5/3468 deleted file mode 100644 index fab333b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3468 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3501 b/pre/docker/volumes/db/data/pgdata/base/5/3501 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3502 b/pre/docker/volumes/db/data/pgdata/base/5/3502 deleted file mode 100644 index ece495c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3502 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3503 b/pre/docker/volumes/db/data/pgdata/base/5/3503 deleted file mode 100644 index 53f9b69..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3503 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3534 b/pre/docker/volumes/db/data/pgdata/base/5/3534 deleted file mode 100644 index 11fad3b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3534 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3541 b/pre/docker/volumes/db/data/pgdata/base/5/3541 deleted file mode 100644 index 40869ad..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3541 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3541_fsm b/pre/docker/volumes/db/data/pgdata/base/5/3541_fsm deleted file mode 100644 index a3a2de4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3541_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3541_vm b/pre/docker/volumes/db/data/pgdata/base/5/3541_vm deleted file mode 100644 index ff0a4fc..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3541_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3542 b/pre/docker/volumes/db/data/pgdata/base/5/3542 deleted file mode 100644 index ced0066..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3542 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3574 b/pre/docker/volumes/db/data/pgdata/base/5/3574 deleted file mode 100644 index b026df1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3574 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3575 b/pre/docker/volumes/db/data/pgdata/base/5/3575 deleted file mode 100644 index bdec532..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3575 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3576 b/pre/docker/volumes/db/data/pgdata/base/5/3576 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3596 b/pre/docker/volumes/db/data/pgdata/base/5/3596 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3597 b/pre/docker/volumes/db/data/pgdata/base/5/3597 deleted file mode 100644 index 08855a4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3597 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3598 b/pre/docker/volumes/db/data/pgdata/base/5/3598 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3599 b/pre/docker/volumes/db/data/pgdata/base/5/3599 deleted file mode 100644 index aaf3892..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3599 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3600 b/pre/docker/volumes/db/data/pgdata/base/5/3600 deleted file mode 100644 index 759a39d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3600 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3600_fsm b/pre/docker/volumes/db/data/pgdata/base/5/3600_fsm deleted file mode 100644 index cebec19..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3600_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3600_vm b/pre/docker/volumes/db/data/pgdata/base/5/3600_vm deleted file mode 100644 index a495b35..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3600_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3601 b/pre/docker/volumes/db/data/pgdata/base/5/3601 deleted file mode 100644 index 04c846e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3601 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3601_fsm b/pre/docker/volumes/db/data/pgdata/base/5/3601_fsm deleted file mode 100644 index 7732d22..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3601_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3601_vm b/pre/docker/volumes/db/data/pgdata/base/5/3601_vm deleted file mode 100644 index a8fb488..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3601_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3602 b/pre/docker/volumes/db/data/pgdata/base/5/3602 deleted file mode 100644 index 3d10dee..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3602 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3602_fsm b/pre/docker/volumes/db/data/pgdata/base/5/3602_fsm deleted file mode 100644 index d7897de..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3602_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3602_vm b/pre/docker/volumes/db/data/pgdata/base/5/3602_vm deleted file mode 100644 index 237f075..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3602_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3603 b/pre/docker/volumes/db/data/pgdata/base/5/3603 deleted file mode 100644 index 0cac665..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3603 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3603_fsm b/pre/docker/volumes/db/data/pgdata/base/5/3603_fsm deleted file mode 100644 index c28dd4f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3603_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3603_vm b/pre/docker/volumes/db/data/pgdata/base/5/3603_vm deleted file mode 100644 index 25fec69..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3603_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3604 b/pre/docker/volumes/db/data/pgdata/base/5/3604 deleted file mode 100644 index 763dfd0..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3604 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3605 b/pre/docker/volumes/db/data/pgdata/base/5/3605 deleted file mode 100644 index a30b070..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3605 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3606 b/pre/docker/volumes/db/data/pgdata/base/5/3606 deleted file mode 100644 index abe7a1c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3606 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3607 b/pre/docker/volumes/db/data/pgdata/base/5/3607 deleted file mode 100644 index e3a3bbc..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3607 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3608 b/pre/docker/volumes/db/data/pgdata/base/5/3608 deleted file mode 100644 index 1e7673b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3608 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3609 b/pre/docker/volumes/db/data/pgdata/base/5/3609 deleted file mode 100644 index 1fd5845..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3609 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3712 b/pre/docker/volumes/db/data/pgdata/base/5/3712 deleted file mode 100644 index 6d3b145..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3712 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3764 b/pre/docker/volumes/db/data/pgdata/base/5/3764 deleted file mode 100644 index 61e4c75..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3764 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3764_fsm b/pre/docker/volumes/db/data/pgdata/base/5/3764_fsm deleted file mode 100644 index f64db4d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3764_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3764_vm b/pre/docker/volumes/db/data/pgdata/base/5/3764_vm deleted file mode 100644 index 9f6161e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3764_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3766 b/pre/docker/volumes/db/data/pgdata/base/5/3766 deleted file mode 100644 index d2ee302..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3766 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3767 b/pre/docker/volumes/db/data/pgdata/base/5/3767 deleted file mode 100644 index 07b30e9..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3767 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/3997 b/pre/docker/volumes/db/data/pgdata/base/5/3997 deleted file mode 100644 index 8969d81..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/3997 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/4143 b/pre/docker/volumes/db/data/pgdata/base/5/4143 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/4144 b/pre/docker/volumes/db/data/pgdata/base/5/4144 deleted file mode 100644 index 5188a14..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/4144 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/4145 b/pre/docker/volumes/db/data/pgdata/base/5/4145 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/4146 b/pre/docker/volumes/db/data/pgdata/base/5/4146 deleted file mode 100644 index 957732f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/4146 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/4147 b/pre/docker/volumes/db/data/pgdata/base/5/4147 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/4148 b/pre/docker/volumes/db/data/pgdata/base/5/4148 deleted file mode 100644 index 9c7057c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/4148 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/4149 b/pre/docker/volumes/db/data/pgdata/base/5/4149 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/4150 b/pre/docker/volumes/db/data/pgdata/base/5/4150 deleted file mode 100644 index 390d428..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/4150 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/4151 b/pre/docker/volumes/db/data/pgdata/base/5/4151 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/4152 b/pre/docker/volumes/db/data/pgdata/base/5/4152 deleted file mode 100644 index 1a289fd..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/4152 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/4153 b/pre/docker/volumes/db/data/pgdata/base/5/4153 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/4154 b/pre/docker/volumes/db/data/pgdata/base/5/4154 deleted file mode 100644 index d0d1ca5..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/4154 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/4155 b/pre/docker/volumes/db/data/pgdata/base/5/4155 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/4156 b/pre/docker/volumes/db/data/pgdata/base/5/4156 deleted file mode 100644 index 5b4bf37..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/4156 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/4157 b/pre/docker/volumes/db/data/pgdata/base/5/4157 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/4158 b/pre/docker/volumes/db/data/pgdata/base/5/4158 deleted file mode 100644 index 937d3d2..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/4158 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/4159 b/pre/docker/volumes/db/data/pgdata/base/5/4159 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/4160 b/pre/docker/volumes/db/data/pgdata/base/5/4160 deleted file mode 100644 index d10cfd6..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/4160 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/4163 b/pre/docker/volumes/db/data/pgdata/base/5/4163 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/4164 b/pre/docker/volumes/db/data/pgdata/base/5/4164 deleted file mode 100644 index a94c963..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/4164 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/4165 b/pre/docker/volumes/db/data/pgdata/base/5/4165 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/4166 b/pre/docker/volumes/db/data/pgdata/base/5/4166 deleted file mode 100644 index 2229586..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/4166 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/4167 b/pre/docker/volumes/db/data/pgdata/base/5/4167 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/4168 b/pre/docker/volumes/db/data/pgdata/base/5/4168 deleted file mode 100644 index 472740b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/4168 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/4169 b/pre/docker/volumes/db/data/pgdata/base/5/4169 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/4170 b/pre/docker/volumes/db/data/pgdata/base/5/4170 deleted file mode 100644 index 88d09b3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/4170 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/4171 b/pre/docker/volumes/db/data/pgdata/base/5/4171 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/4172 b/pre/docker/volumes/db/data/pgdata/base/5/4172 deleted file mode 100644 index 3eed1ee..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/4172 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/4173 b/pre/docker/volumes/db/data/pgdata/base/5/4173 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/4174 b/pre/docker/volumes/db/data/pgdata/base/5/4174 deleted file mode 100644 index a0819a2..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/4174 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/5002 b/pre/docker/volumes/db/data/pgdata/base/5/5002 deleted file mode 100644 index aefa40d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/5002 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/548 b/pre/docker/volumes/db/data/pgdata/base/5/548 deleted file mode 100644 index 7c6567d..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/548 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/549 b/pre/docker/volumes/db/data/pgdata/base/5/549 deleted file mode 100644 index 26a3887..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/549 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/6102 b/pre/docker/volumes/db/data/pgdata/base/5/6102 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/6104 b/pre/docker/volumes/db/data/pgdata/base/5/6104 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/6106 b/pre/docker/volumes/db/data/pgdata/base/5/6106 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/6110 b/pre/docker/volumes/db/data/pgdata/base/5/6110 deleted file mode 100644 index 42e1920..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/6110 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/6111 b/pre/docker/volumes/db/data/pgdata/base/5/6111 deleted file mode 100644 index d012727..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/6111 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/6112 b/pre/docker/volumes/db/data/pgdata/base/5/6112 deleted file mode 100644 index 293367c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/6112 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/6113 b/pre/docker/volumes/db/data/pgdata/base/5/6113 deleted file mode 100644 index 542f8fa..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/6113 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/6116 b/pre/docker/volumes/db/data/pgdata/base/5/6116 deleted file mode 100644 index 787d5d1..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/6116 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/6117 b/pre/docker/volumes/db/data/pgdata/base/5/6117 deleted file mode 100644 index 2b5656b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/6117 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/6175 b/pre/docker/volumes/db/data/pgdata/base/5/6175 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/6176 b/pre/docker/volumes/db/data/pgdata/base/5/6176 deleted file mode 100644 index bfd14df..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/6176 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/6228 b/pre/docker/volumes/db/data/pgdata/base/5/6228 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/6229 b/pre/docker/volumes/db/data/pgdata/base/5/6229 deleted file mode 100644 index 5d03213..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/6229 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/6237 b/pre/docker/volumes/db/data/pgdata/base/5/6237 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/6238 b/pre/docker/volumes/db/data/pgdata/base/5/6238 deleted file mode 100644 index e7c0e8c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/6238 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/6239 b/pre/docker/volumes/db/data/pgdata/base/5/6239 deleted file mode 100644 index 6c60b50..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/6239 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/826 b/pre/docker/volumes/db/data/pgdata/base/5/826 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/827 b/pre/docker/volumes/db/data/pgdata/base/5/827 deleted file mode 100644 index 94a900e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/827 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/828 b/pre/docker/volumes/db/data/pgdata/base/5/828 deleted file mode 100644 index ca30461..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/828 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/PG_VERSION b/pre/docker/volumes/db/data/pgdata/base/5/PG_VERSION deleted file mode 100644 index 60d3b2f..0000000 --- a/pre/docker/volumes/db/data/pgdata/base/5/PG_VERSION +++ /dev/null @@ -1 +0,0 @@ -15 diff --git a/pre/docker/volumes/db/data/pgdata/base/5/pg_filenode.map b/pre/docker/volumes/db/data/pgdata/base/5/pg_filenode.map deleted file mode 100644 index 193d78f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/pg_filenode.map and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/base/5/pg_internal.init b/pre/docker/volumes/db/data/pgdata/base/5/pg_internal.init deleted file mode 100644 index b0c760e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/base/5/pg_internal.init and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/1213 b/pre/docker/volumes/db/data/pgdata/global/1213 deleted file mode 100644 index eec8dc3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/1213 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/1213_fsm b/pre/docker/volumes/db/data/pgdata/global/1213_fsm deleted file mode 100644 index 86074be..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/1213_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/1213_vm b/pre/docker/volumes/db/data/pgdata/global/1213_vm deleted file mode 100644 index 7b2e607..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/1213_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/1214 b/pre/docker/volumes/db/data/pgdata/global/1214 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/global/1232 b/pre/docker/volumes/db/data/pgdata/global/1232 deleted file mode 100644 index 3e5cf63..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/1232 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/1233 b/pre/docker/volumes/db/data/pgdata/global/1233 deleted file mode 100644 index 91d2811..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/1233 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/1260 b/pre/docker/volumes/db/data/pgdata/global/1260 deleted file mode 100644 index 31d58b6..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/1260 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/1260_fsm b/pre/docker/volumes/db/data/pgdata/global/1260_fsm deleted file mode 100644 index 2b8ab95..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/1260_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/1260_vm b/pre/docker/volumes/db/data/pgdata/global/1260_vm deleted file mode 100644 index 95af49b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/1260_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/1261 b/pre/docker/volumes/db/data/pgdata/global/1261 deleted file mode 100644 index 9d84dac..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/1261 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/1261_fsm b/pre/docker/volumes/db/data/pgdata/global/1261_fsm deleted file mode 100644 index 7732d22..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/1261_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/1261_vm b/pre/docker/volumes/db/data/pgdata/global/1261_vm deleted file mode 100644 index afb5b0c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/1261_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/1262 b/pre/docker/volumes/db/data/pgdata/global/1262 deleted file mode 100644 index 3b5fc41..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/1262 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/1262_fsm b/pre/docker/volumes/db/data/pgdata/global/1262_fsm deleted file mode 100644 index 479fd94..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/1262_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/1262_vm b/pre/docker/volumes/db/data/pgdata/global/1262_vm deleted file mode 100644 index 347a50f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/1262_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/2396 b/pre/docker/volumes/db/data/pgdata/global/2396 deleted file mode 100644 index 0111168..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/2396 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/2396_fsm b/pre/docker/volumes/db/data/pgdata/global/2396_fsm deleted file mode 100644 index 7a4f24f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/2396_fsm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/2396_vm b/pre/docker/volumes/db/data/pgdata/global/2396_vm deleted file mode 100644 index c57b050..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/2396_vm and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/2397 b/pre/docker/volumes/db/data/pgdata/global/2397 deleted file mode 100644 index 034a30b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/2397 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/2671 b/pre/docker/volumes/db/data/pgdata/global/2671 deleted file mode 100644 index c3ff480..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/2671 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/2672 b/pre/docker/volumes/db/data/pgdata/global/2672 deleted file mode 100644 index 5531374..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/2672 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/2676 b/pre/docker/volumes/db/data/pgdata/global/2676 deleted file mode 100644 index 175554f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/2676 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/2677 b/pre/docker/volumes/db/data/pgdata/global/2677 deleted file mode 100644 index 8f085ee..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/2677 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/2694 b/pre/docker/volumes/db/data/pgdata/global/2694 deleted file mode 100644 index cae0c8b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/2694 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/2695 b/pre/docker/volumes/db/data/pgdata/global/2695 deleted file mode 100644 index 54705ac..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/2695 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/2697 b/pre/docker/volumes/db/data/pgdata/global/2697 deleted file mode 100644 index 1de07c0..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/2697 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/2698 b/pre/docker/volumes/db/data/pgdata/global/2698 deleted file mode 100644 index a2d3b04..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/2698 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/2846 b/pre/docker/volumes/db/data/pgdata/global/2846 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/global/2847 b/pre/docker/volumes/db/data/pgdata/global/2847 deleted file mode 100644 index a7e1c4c..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/2847 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/2964 b/pre/docker/volumes/db/data/pgdata/global/2964 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/global/2965 b/pre/docker/volumes/db/data/pgdata/global/2965 deleted file mode 100644 index edfba80..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/2965 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/2966 b/pre/docker/volumes/db/data/pgdata/global/2966 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/global/2967 b/pre/docker/volumes/db/data/pgdata/global/2967 deleted file mode 100644 index 9f233b5..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/2967 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/3592 b/pre/docker/volumes/db/data/pgdata/global/3592 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/global/3593 b/pre/docker/volumes/db/data/pgdata/global/3593 deleted file mode 100644 index 002e585..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/3593 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/4060 b/pre/docker/volumes/db/data/pgdata/global/4060 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/global/4061 b/pre/docker/volumes/db/data/pgdata/global/4061 deleted file mode 100644 index f8d1844..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/4061 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/4175 b/pre/docker/volumes/db/data/pgdata/global/4175 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/global/4176 b/pre/docker/volumes/db/data/pgdata/global/4176 deleted file mode 100644 index a6db5e6..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/4176 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/4177 b/pre/docker/volumes/db/data/pgdata/global/4177 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/global/4178 b/pre/docker/volumes/db/data/pgdata/global/4178 deleted file mode 100644 index 8ab3ab3..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/4178 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/4181 b/pre/docker/volumes/db/data/pgdata/global/4181 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/global/4182 b/pre/docker/volumes/db/data/pgdata/global/4182 deleted file mode 100644 index b619552..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/4182 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/4183 b/pre/docker/volumes/db/data/pgdata/global/4183 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/global/4184 b/pre/docker/volumes/db/data/pgdata/global/4184 deleted file mode 100644 index 37e78b9..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/4184 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/4185 b/pre/docker/volumes/db/data/pgdata/global/4185 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/global/4186 b/pre/docker/volumes/db/data/pgdata/global/4186 deleted file mode 100644 index f988a8f..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/4186 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/6000 b/pre/docker/volumes/db/data/pgdata/global/6000 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/global/6001 b/pre/docker/volumes/db/data/pgdata/global/6001 deleted file mode 100644 index 06b4629..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/6001 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/6002 b/pre/docker/volumes/db/data/pgdata/global/6002 deleted file mode 100644 index e7ddd6b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/6002 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/6100 b/pre/docker/volumes/db/data/pgdata/global/6100 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/global/6114 b/pre/docker/volumes/db/data/pgdata/global/6114 deleted file mode 100644 index bf887fa..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/6114 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/6115 b/pre/docker/volumes/db/data/pgdata/global/6115 deleted file mode 100644 index afafca8..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/6115 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/6243 b/pre/docker/volumes/db/data/pgdata/global/6243 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/global/6244 b/pre/docker/volumes/db/data/pgdata/global/6244 deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/db/data/pgdata/global/6245 b/pre/docker/volumes/db/data/pgdata/global/6245 deleted file mode 100644 index f1dfb7e..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/6245 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/6246 b/pre/docker/volumes/db/data/pgdata/global/6246 deleted file mode 100644 index 084bf17..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/6246 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/6247 b/pre/docker/volumes/db/data/pgdata/global/6247 deleted file mode 100644 index 514ffb0..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/6247 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/pg_control b/pre/docker/volumes/db/data/pgdata/global/pg_control deleted file mode 100644 index c572e12..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/pg_control and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/pg_filenode.map b/pre/docker/volumes/db/data/pgdata/global/pg_filenode.map deleted file mode 100644 index e1002d5..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/pg_filenode.map and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/global/pg_internal.init b/pre/docker/volumes/db/data/pgdata/global/pg_internal.init deleted file mode 100644 index 36f61f2..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/global/pg_internal.init and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/pg_hba.conf b/pre/docker/volumes/db/data/pgdata/pg_hba.conf deleted file mode 100644 index 4e202d3..0000000 --- a/pre/docker/volumes/db/data/pgdata/pg_hba.conf +++ /dev/null @@ -1,100 +0,0 @@ -# PostgreSQL Client Authentication Configuration File -# =================================================== -# -# Refer to the "Client Authentication" section in the PostgreSQL -# documentation for a complete description of this file. A short -# synopsis follows. -# -# This file controls: which hosts are allowed to connect, how clients -# are authenticated, which PostgreSQL user names they can use, which -# databases they can access. Records take one of these forms: -# -# local DATABASE USER METHOD [OPTIONS] -# host DATABASE USER ADDRESS METHOD [OPTIONS] -# hostssl DATABASE USER ADDRESS METHOD [OPTIONS] -# hostnossl DATABASE USER ADDRESS METHOD [OPTIONS] -# hostgssenc DATABASE USER ADDRESS METHOD [OPTIONS] -# hostnogssenc DATABASE USER ADDRESS METHOD [OPTIONS] -# -# (The uppercase items must be replaced by actual values.) -# -# The first field is the connection type: -# - "local" is a Unix-domain socket -# - "host" is a TCP/IP socket (encrypted or not) -# - "hostssl" is a TCP/IP socket that is SSL-encrypted -# - "hostnossl" is a TCP/IP socket that is not SSL-encrypted -# - "hostgssenc" is a TCP/IP socket that is GSSAPI-encrypted -# - "hostnogssenc" is a TCP/IP socket that is not GSSAPI-encrypted -# -# DATABASE can be "all", "sameuser", "samerole", "replication", a -# database name, or a comma-separated list thereof. The "all" -# keyword does not match "replication". Access to replication -# must be enabled in a separate record (see example below). -# -# USER can be "all", a user name, a group name prefixed with "+", or a -# comma-separated list thereof. In both the DATABASE and USER fields -# you can also write a file name prefixed with "@" to include names -# from a separate file. -# -# ADDRESS specifies the set of hosts the record matches. It can be a -# host name, or it is made up of an IP address and a CIDR mask that is -# an integer (between 0 and 32 (IPv4) or 128 (IPv6) inclusive) that -# specifies the number of significant bits in the mask. A host name -# that starts with a dot (.) matches a suffix of the actual host name. -# Alternatively, you can write an IP address and netmask in separate -# columns to specify the set of hosts. Instead of a CIDR-address, you -# can write "samehost" to match any of the server's own IP addresses, -# or "samenet" to match any address in any subnet that the server is -# directly connected to. -# -# METHOD can be "trust", "reject", "md5", "password", "scram-sha-256", -# "gss", "sspi", "ident", "peer", "pam", "ldap", "radius" or "cert". -# Note that "password" sends passwords in clear text; "md5" or -# "scram-sha-256" are preferred since they send encrypted passwords. -# -# OPTIONS are a set of options for the authentication in the format -# NAME=VALUE. The available options depend on the different -# authentication methods -- refer to the "Client Authentication" -# section in the documentation for a list of which options are -# available for which authentication methods. -# -# Database and user names containing spaces, commas, quotes and other -# special characters must be quoted. Quoting one of the keywords -# "all", "sameuser", "samerole" or "replication" makes the name lose -# its special character, and just match a database or username with -# that name. -# -# This file is read on server startup and when the server receives a -# SIGHUP signal. If you edit the file on a running system, you have to -# SIGHUP the server for the changes to take effect, run "pg_ctl reload", -# or execute "SELECT pg_reload_conf()". -# -# Put your actual configuration here -# ---------------------------------- -# -# If you want to allow non-local connections, you need to add more -# "host" records. In that case you will also need to make PostgreSQL -# listen on a non-local interface via the listen_addresses -# configuration parameter, or via the -i or -h command line switches. - -# CAUTION: Configuring the system for local "trust" authentication -# allows any local user to connect as any PostgreSQL user, including -# the database superuser. If you do not trust all your local users, -# use another authentication method. - - -# TYPE DATABASE USER ADDRESS METHOD - -# "local" is for Unix domain socket connections only -local all all trust -# IPv4 local connections: -host all all 127.0.0.1/32 trust -# IPv6 local connections: -host all all ::1/128 trust -# Allow replication connections from localhost, by a user with the -# replication privilege. -local replication all trust -host replication all 127.0.0.1/32 trust -host replication all ::1/128 trust - -host all all all scram-sha-256 diff --git a/pre/docker/volumes/db/data/pgdata/pg_ident.conf b/pre/docker/volumes/db/data/pgdata/pg_ident.conf deleted file mode 100644 index a5870e6..0000000 --- a/pre/docker/volumes/db/data/pgdata/pg_ident.conf +++ /dev/null @@ -1,42 +0,0 @@ -# PostgreSQL User Name Maps -# ========================= -# -# Refer to the PostgreSQL documentation, chapter "Client -# Authentication" for a complete description. A short synopsis -# follows. -# -# This file controls PostgreSQL user name mapping. It maps external -# user names to their corresponding PostgreSQL user names. Records -# are of the form: -# -# MAPNAME SYSTEM-USERNAME PG-USERNAME -# -# (The uppercase quantities must be replaced by actual values.) -# -# MAPNAME is the (otherwise freely chosen) map name that was used in -# pg_hba.conf. SYSTEM-USERNAME is the detected user name of the -# client. PG-USERNAME is the requested PostgreSQL user name. The -# existence of a record specifies that SYSTEM-USERNAME may connect as -# PG-USERNAME. -# -# If SYSTEM-USERNAME starts with a slash (/), it will be treated as a -# regular expression. Optionally this can contain a capture (a -# parenthesized subexpression). The substring matching the capture -# will be substituted for \1 (backslash-one) if present in -# PG-USERNAME. -# -# Multiple maps may be specified in this file and used by pg_hba.conf. -# -# No map names are defined in the default configuration. If all -# system user names and PostgreSQL user names are the same, you don't -# need anything in this file. -# -# This file is read on server startup and when the postmaster receives -# a SIGHUP signal. If you edit the file on a running system, you have -# to SIGHUP the postmaster for the changes to take effect. You can -# use "pg_ctl reload" to do that. - -# Put your actual configuration here -# ---------------------------------- - -# MAPNAME SYSTEM-USERNAME PG-USERNAME diff --git a/pre/docker/volumes/db/data/pgdata/pg_logical/replorigin_checkpoint b/pre/docker/volumes/db/data/pgdata/pg_logical/replorigin_checkpoint deleted file mode 100644 index ec451b0..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/pg_logical/replorigin_checkpoint and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/pg_multixact/members/0000 b/pre/docker/volumes/db/data/pgdata/pg_multixact/members/0000 deleted file mode 100644 index 6d17cf9..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/pg_multixact/members/0000 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/pg_multixact/offsets/0000 b/pre/docker/volumes/db/data/pgdata/pg_multixact/offsets/0000 deleted file mode 100644 index 6d17cf9..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/pg_multixact/offsets/0000 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/pg_stat/pgstat.stat b/pre/docker/volumes/db/data/pgdata/pg_stat/pgstat.stat deleted file mode 100644 index aea72ba..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/pg_stat/pgstat.stat and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/pg_subtrans/0000 b/pre/docker/volumes/db/data/pgdata/pg_subtrans/0000 deleted file mode 100644 index 12f3be4..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/pg_subtrans/0000 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/pg_wal/000000010000000000000003 b/pre/docker/volumes/db/data/pgdata/pg_wal/000000010000000000000003 deleted file mode 100644 index 748cf5b..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/pg_wal/000000010000000000000003 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/pg_wal/000000010000000000000004 b/pre/docker/volumes/db/data/pgdata/pg_wal/000000010000000000000004 deleted file mode 100644 index 1fc5fb5..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/pg_wal/000000010000000000000004 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/pg_xact/0000 b/pre/docker/volumes/db/data/pgdata/pg_xact/0000 deleted file mode 100644 index 10ac946..0000000 Binary files a/pre/docker/volumes/db/data/pgdata/pg_xact/0000 and /dev/null differ diff --git a/pre/docker/volumes/db/data/pgdata/postgresql.auto.conf b/pre/docker/volumes/db/data/pgdata/postgresql.auto.conf deleted file mode 100644 index af7125e..0000000 --- a/pre/docker/volumes/db/data/pgdata/postgresql.auto.conf +++ /dev/null @@ -1,2 +0,0 @@ -# Do not edit this file manually! -# It will be overwritten by the ALTER SYSTEM command. diff --git a/pre/docker/volumes/db/data/pgdata/postgresql.conf b/pre/docker/volumes/db/data/pgdata/postgresql.conf deleted file mode 100644 index 0e6341d..0000000 --- a/pre/docker/volumes/db/data/pgdata/postgresql.conf +++ /dev/null @@ -1,813 +0,0 @@ -# ----------------------------- -# PostgreSQL configuration file -# ----------------------------- -# -# This file consists of lines of the form: -# -# name = value -# -# (The "=" is optional.) Whitespace may be used. Comments are introduced with -# "#" anywhere on a line. The complete list of parameter names and allowed -# values can be found in the PostgreSQL documentation. -# -# The commented-out settings shown in this file represent the default values. -# Re-commenting a setting is NOT sufficient to revert it to the default value; -# you need to reload the server. -# -# This file is read on server startup and when the server receives a SIGHUP -# signal. If you edit the file on a running system, you have to SIGHUP the -# server for the changes to take effect, run "pg_ctl reload", or execute -# "SELECT pg_reload_conf()". Some parameters, which are marked below, -# require a server shutdown and restart to take effect. -# -# Any parameter can also be given as a command-line option to the server, e.g., -# "postgres -c log_connections=on". Some parameters can be changed at run time -# with the "SET" SQL command. -# -# Memory units: B = bytes Time units: us = microseconds -# kB = kilobytes ms = milliseconds -# MB = megabytes s = seconds -# GB = gigabytes min = minutes -# TB = terabytes h = hours -# d = days - - -#------------------------------------------------------------------------------ -# FILE LOCATIONS -#------------------------------------------------------------------------------ - -# The default values of these variables are driven from the -D command-line -# option or PGDATA environment variable, represented here as ConfigDir. - -#data_directory = 'ConfigDir' # use data in another directory - # (change requires restart) -#hba_file = 'ConfigDir/pg_hba.conf' # host-based authentication file - # (change requires restart) -#ident_file = 'ConfigDir/pg_ident.conf' # ident configuration file - # (change requires restart) - -# If external_pid_file is not explicitly set, no extra PID file is written. -#external_pid_file = '' # write an extra PID file - # (change requires restart) - - -#------------------------------------------------------------------------------ -# CONNECTIONS AND AUTHENTICATION -#------------------------------------------------------------------------------ - -# - Connection Settings - - -listen_addresses = '*' - # comma-separated list of addresses; - # defaults to 'localhost'; use '*' for all - # (change requires restart) -#port = 5432 # (change requires restart) -max_connections = 100 # (change requires restart) -#superuser_reserved_connections = 3 # (change requires restart) -#unix_socket_directories = '/var/run/postgresql' # comma-separated list of directories - # (change requires restart) -#unix_socket_group = '' # (change requires restart) -#unix_socket_permissions = 0777 # begin with 0 to use octal notation - # (change requires restart) -#bonjour = off # advertise server via Bonjour - # (change requires restart) -#bonjour_name = '' # defaults to the computer name - # (change requires restart) - -# - TCP settings - -# see "man tcp" for details - -#tcp_keepalives_idle = 0 # TCP_KEEPIDLE, in seconds; - # 0 selects the system default -#tcp_keepalives_interval = 0 # TCP_KEEPINTVL, in seconds; - # 0 selects the system default -#tcp_keepalives_count = 0 # TCP_KEEPCNT; - # 0 selects the system default -#tcp_user_timeout = 0 # TCP_USER_TIMEOUT, in milliseconds; - # 0 selects the system default - -#client_connection_check_interval = 0 # time between checks for client - # disconnection while running queries; - # 0 for never - -# - Authentication - - -#authentication_timeout = 1min # 1s-600s -#password_encryption = scram-sha-256 # scram-sha-256 or md5 -#db_user_namespace = off - -# GSSAPI using Kerberos -#krb_server_keyfile = 'FILE:${sysconfdir}/krb5.keytab' -#krb_caseins_users = off - -# - SSL - - -#ssl = off -#ssl_ca_file = '' -#ssl_cert_file = 'server.crt' -#ssl_crl_file = '' -#ssl_crl_dir = '' -#ssl_key_file = 'server.key' -#ssl_ciphers = 'HIGH:MEDIUM:+3DES:!aNULL' # allowed SSL ciphers -#ssl_prefer_server_ciphers = on -#ssl_ecdh_curve = 'prime256v1' -#ssl_min_protocol_version = 'TLSv1.2' -#ssl_max_protocol_version = '' -#ssl_dh_params_file = '' -#ssl_passphrase_command = '' -#ssl_passphrase_command_supports_reload = off - - -#------------------------------------------------------------------------------ -# RESOURCE USAGE (except WAL) -#------------------------------------------------------------------------------ - -# - Memory - - -shared_buffers = 128MB # min 128kB - # (change requires restart) -#huge_pages = try # on, off, or try - # (change requires restart) -#huge_page_size = 0 # zero for system default - # (change requires restart) -#temp_buffers = 8MB # min 800kB -#max_prepared_transactions = 0 # zero disables the feature - # (change requires restart) -# Caution: it is not advisable to set max_prepared_transactions nonzero unless -# you actively intend to use prepared transactions. -#work_mem = 4MB # min 64kB -#hash_mem_multiplier = 2.0 # 1-1000.0 multiplier on hash table work_mem -#maintenance_work_mem = 64MB # min 1MB -#autovacuum_work_mem = -1 # min 1MB, or -1 to use maintenance_work_mem -#logical_decoding_work_mem = 64MB # min 64kB -#max_stack_depth = 2MB # min 100kB -#shared_memory_type = mmap # the default is the first option - # supported by the operating system: - # mmap - # sysv - # windows - # (change requires restart) -dynamic_shared_memory_type = posix # the default is usually the first option - # supported by the operating system: - # posix - # sysv - # windows - # mmap - # (change requires restart) -#min_dynamic_shared_memory = 0MB # (change requires restart) - -# - Disk - - -#temp_file_limit = -1 # limits per-process temp file space - # in kilobytes, or -1 for no limit - -# - Kernel Resources - - -#max_files_per_process = 1000 # min 64 - # (change requires restart) - -# - Cost-Based Vacuum Delay - - -#vacuum_cost_delay = 0 # 0-100 milliseconds (0 disables) -#vacuum_cost_page_hit = 1 # 0-10000 credits -#vacuum_cost_page_miss = 2 # 0-10000 credits -#vacuum_cost_page_dirty = 20 # 0-10000 credits -#vacuum_cost_limit = 200 # 1-10000 credits - -# - Background Writer - - -#bgwriter_delay = 200ms # 10-10000ms between rounds -#bgwriter_lru_maxpages = 100 # max buffers written/round, 0 disables -#bgwriter_lru_multiplier = 2.0 # 0-10.0 multiplier on buffers scanned/round -#bgwriter_flush_after = 512kB # measured in pages, 0 disables - -# - Asynchronous Behavior - - -#backend_flush_after = 0 # measured in pages, 0 disables -#effective_io_concurrency = 1 # 1-1000; 0 disables prefetching -#maintenance_io_concurrency = 10 # 1-1000; 0 disables prefetching -#max_worker_processes = 8 # (change requires restart) -#max_parallel_workers_per_gather = 2 # limited by max_parallel_workers -#max_parallel_maintenance_workers = 2 # limited by max_parallel_workers -#max_parallel_workers = 8 # number of max_worker_processes that - # can be used in parallel operations -#parallel_leader_participation = on -#old_snapshot_threshold = -1 # 1min-60d; -1 disables; 0 is immediate - # (change requires restart) - - -#------------------------------------------------------------------------------ -# WRITE-AHEAD LOG -#------------------------------------------------------------------------------ - -# - Settings - - -#wal_level = replica # minimal, replica, or logical - # (change requires restart) -#fsync = on # flush data to disk for crash safety - # (turning this off can cause - # unrecoverable data corruption) -#synchronous_commit = on # synchronization level; - # off, local, remote_write, remote_apply, or on -#wal_sync_method = fsync # the default is the first option - # supported by the operating system: - # open_datasync - # fdatasync (default on Linux and FreeBSD) - # fsync - # fsync_writethrough - # open_sync -#full_page_writes = on # recover from partial page writes -#wal_log_hints = off # also do full page writes of non-critical updates - # (change requires restart) -#wal_compression = off # enables compression of full-page writes; - # off, pglz, lz4, zstd, or on -#wal_init_zero = on # zero-fill new WAL files -#wal_recycle = on # recycle WAL files -#wal_buffers = -1 # min 32kB, -1 sets based on shared_buffers - # (change requires restart) -#wal_writer_delay = 200ms # 1-10000 milliseconds -#wal_writer_flush_after = 1MB # measured in pages, 0 disables -#wal_skip_threshold = 2MB - -#commit_delay = 0 # range 0-100000, in microseconds -#commit_siblings = 5 # range 1-1000 - -# - Checkpoints - - -#checkpoint_timeout = 5min # range 30s-1d -#checkpoint_completion_target = 0.9 # checkpoint target duration, 0.0 - 1.0 -#checkpoint_flush_after = 256kB # measured in pages, 0 disables -#checkpoint_warning = 30s # 0 disables -max_wal_size = 1GB -min_wal_size = 80MB - -# - Prefetching during recovery - - -#recovery_prefetch = try # prefetch pages referenced in the WAL? -#wal_decode_buffer_size = 512kB # lookahead window used for prefetching - # (change requires restart) - -# - Archiving - - -#archive_mode = off # enables archiving; off, on, or always - # (change requires restart) -#archive_library = '' # library to use to archive a logfile segment - # (empty string indicates archive_command should - # be used) -#archive_command = '' # command to use to archive a logfile segment - # placeholders: %p = path of file to archive - # %f = file name only - # e.g. 'test ! -f /mnt/server/archivedir/%f && cp %p /mnt/server/archivedir/%f' -#archive_timeout = 0 # force a logfile segment switch after this - # number of seconds; 0 disables - -# - Archive Recovery - - -# These are only used in recovery mode. - -#restore_command = '' # command to use to restore an archived logfile segment - # placeholders: %p = path of file to restore - # %f = file name only - # e.g. 'cp /mnt/server/archivedir/%f %p' -#archive_cleanup_command = '' # command to execute at every restartpoint -#recovery_end_command = '' # command to execute at completion of recovery - -# - Recovery Target - - -# Set these only when performing a targeted recovery. - -#recovery_target = '' # 'immediate' to end recovery as soon as a - # consistent state is reached - # (change requires restart) -#recovery_target_name = '' # the named restore point to which recovery will proceed - # (change requires restart) -#recovery_target_time = '' # the time stamp up to which recovery will proceed - # (change requires restart) -#recovery_target_xid = '' # the transaction ID up to which recovery will proceed - # (change requires restart) -#recovery_target_lsn = '' # the WAL LSN up to which recovery will proceed - # (change requires restart) -#recovery_target_inclusive = on # Specifies whether to stop: - # just after the specified recovery target (on) - # just before the recovery target (off) - # (change requires restart) -#recovery_target_timeline = 'latest' # 'current', 'latest', or timeline ID - # (change requires restart) -#recovery_target_action = 'pause' # 'pause', 'promote', 'shutdown' - # (change requires restart) - - -#------------------------------------------------------------------------------ -# REPLICATION -#------------------------------------------------------------------------------ - -# - Sending Servers - - -# Set these on the primary and on any standby that will send replication data. - -#max_wal_senders = 10 # max number of walsender processes - # (change requires restart) -#max_replication_slots = 10 # max number of replication slots - # (change requires restart) -#wal_keep_size = 0 # in megabytes; 0 disables -#max_slot_wal_keep_size = -1 # in megabytes; -1 disables -#wal_sender_timeout = 60s # in milliseconds; 0 disables -#track_commit_timestamp = off # collect timestamp of transaction commit - # (change requires restart) - -# - Primary Server - - -# These settings are ignored on a standby server. - -#synchronous_standby_names = '' # standby servers that provide sync rep - # method to choose sync standbys, number of sync standbys, - # and comma-separated list of application_name - # from standby(s); '*' = all -#vacuum_defer_cleanup_age = 0 # number of xacts by which cleanup is delayed - -# - Standby Servers - - -# These settings are ignored on a primary server. - -#primary_conninfo = '' # connection string to sending server -#primary_slot_name = '' # replication slot on sending server -#promote_trigger_file = '' # file name whose presence ends recovery -#hot_standby = on # "off" disallows queries during recovery - # (change requires restart) -#max_standby_archive_delay = 30s # max delay before canceling queries - # when reading WAL from archive; - # -1 allows indefinite delay -#max_standby_streaming_delay = 30s # max delay before canceling queries - # when reading streaming WAL; - # -1 allows indefinite delay -#wal_receiver_create_temp_slot = off # create temp slot if primary_slot_name - # is not set -#wal_receiver_status_interval = 10s # send replies at least this often - # 0 disables -#hot_standby_feedback = off # send info from standby to prevent - # query conflicts -#wal_receiver_timeout = 60s # time that receiver waits for - # communication from primary - # in milliseconds; 0 disables -#wal_retrieve_retry_interval = 5s # time to wait before retrying to - # retrieve WAL after a failed attempt -#recovery_min_apply_delay = 0 # minimum delay for applying changes during recovery - -# - Subscribers - - -# These settings are ignored on a publisher. - -#max_logical_replication_workers = 4 # taken from max_worker_processes - # (change requires restart) -#max_sync_workers_per_subscription = 2 # taken from max_logical_replication_workers - - -#------------------------------------------------------------------------------ -# QUERY TUNING -#------------------------------------------------------------------------------ - -# - Planner Method Configuration - - -#enable_async_append = on -#enable_bitmapscan = on -#enable_gathermerge = on -#enable_hashagg = on -#enable_hashjoin = on -#enable_incremental_sort = on -#enable_indexscan = on -#enable_indexonlyscan = on -#enable_material = on -#enable_memoize = on -#enable_mergejoin = on -#enable_nestloop = on -#enable_parallel_append = on -#enable_parallel_hash = on -#enable_partition_pruning = on -#enable_partitionwise_join = off -#enable_partitionwise_aggregate = off -#enable_seqscan = on -#enable_sort = on -#enable_tidscan = on - -# - Planner Cost Constants - - -#seq_page_cost = 1.0 # measured on an arbitrary scale -#random_page_cost = 4.0 # same scale as above -#cpu_tuple_cost = 0.01 # same scale as above -#cpu_index_tuple_cost = 0.005 # same scale as above -#cpu_operator_cost = 0.0025 # same scale as above -#parallel_setup_cost = 1000.0 # same scale as above -#parallel_tuple_cost = 0.1 # same scale as above -#min_parallel_table_scan_size = 8MB -#min_parallel_index_scan_size = 512kB -#effective_cache_size = 4GB - -#jit_above_cost = 100000 # perform JIT compilation if available - # and query more expensive than this; - # -1 disables -#jit_inline_above_cost = 500000 # inline small functions if query is - # more expensive than this; -1 disables -#jit_optimize_above_cost = 500000 # use expensive JIT optimizations if - # query is more expensive than this; - # -1 disables - -# - Genetic Query Optimizer - - -#geqo = on -#geqo_threshold = 12 -#geqo_effort = 5 # range 1-10 -#geqo_pool_size = 0 # selects default based on effort -#geqo_generations = 0 # selects default based on effort -#geqo_selection_bias = 2.0 # range 1.5-2.0 -#geqo_seed = 0.0 # range 0.0-1.0 - -# - Other Planner Options - - -#default_statistics_target = 100 # range 1-10000 -#constraint_exclusion = partition # on, off, or partition -#cursor_tuple_fraction = 0.1 # range 0.0-1.0 -#from_collapse_limit = 8 -#jit = on # allow JIT compilation -#join_collapse_limit = 8 # 1 disables collapsing of explicit - # JOIN clauses -#plan_cache_mode = auto # auto, force_generic_plan or - # force_custom_plan -#recursive_worktable_factor = 10.0 # range 0.001-1000000 - - -#------------------------------------------------------------------------------ -# REPORTING AND LOGGING -#------------------------------------------------------------------------------ - -# - Where to Log - - -#log_destination = 'stderr' # Valid values are combinations of - # stderr, csvlog, jsonlog, syslog, and - # eventlog, depending on platform. - # csvlog and jsonlog require - # logging_collector to be on. - -# This is used when logging to stderr: -#logging_collector = off # Enable capturing of stderr, jsonlog, - # and csvlog into log files. Required - # to be on for csvlogs and jsonlogs. - # (change requires restart) - -# These are only used if logging_collector is on: -#log_directory = 'log' # directory where log files are written, - # can be absolute or relative to PGDATA -#log_filename = 'postgresql-%Y-%m-%d_%H%M%S.log' # log file name pattern, - # can include strftime() escapes -#log_file_mode = 0600 # creation mode for log files, - # begin with 0 to use octal notation -#log_rotation_age = 1d # Automatic rotation of logfiles will - # happen after that time. 0 disables. -#log_rotation_size = 10MB # Automatic rotation of logfiles will - # happen after that much log output. - # 0 disables. -#log_truncate_on_rotation = off # If on, an existing log file with the - # same name as the new log file will be - # truncated rather than appended to. - # But such truncation only occurs on - # time-driven rotation, not on restarts - # or size-driven rotation. Default is - # off, meaning append to existing files - # in all cases. - -# These are relevant when logging to syslog: -#syslog_facility = 'LOCAL0' -#syslog_ident = 'postgres' -#syslog_sequence_numbers = on -#syslog_split_messages = on - -# This is only relevant when logging to eventlog (Windows): -# (change requires restart) -#event_source = 'PostgreSQL' - -# - When to Log - - -#log_min_messages = warning # values in order of decreasing detail: - # debug5 - # debug4 - # debug3 - # debug2 - # debug1 - # info - # notice - # warning - # error - # log - # fatal - # panic - -#log_min_error_statement = error # values in order of decreasing detail: - # debug5 - # debug4 - # debug3 - # debug2 - # debug1 - # info - # notice - # warning - # error - # log - # fatal - # panic (effectively off) - -#log_min_duration_statement = -1 # -1 is disabled, 0 logs all statements - # and their durations, > 0 logs only - # statements running at least this number - # of milliseconds - -#log_min_duration_sample = -1 # -1 is disabled, 0 logs a sample of statements - # and their durations, > 0 logs only a sample of - # statements running at least this number - # of milliseconds; - # sample fraction is determined by log_statement_sample_rate - -#log_statement_sample_rate = 1.0 # fraction of logged statements exceeding - # log_min_duration_sample to be logged; - # 1.0 logs all such statements, 0.0 never logs - - -#log_transaction_sample_rate = 0.0 # fraction of transactions whose statements - # are logged regardless of their duration; 1.0 logs all - # statements from all transactions, 0.0 never logs - -#log_startup_progress_interval = 10s # Time between progress updates for - # long-running startup operations. - # 0 disables the feature, > 0 indicates - # the interval in milliseconds. - -# - What to Log - - -#debug_print_parse = off -#debug_print_rewritten = off -#debug_print_plan = off -#debug_pretty_print = on -#log_autovacuum_min_duration = 10min # log autovacuum activity; - # -1 disables, 0 logs all actions and - # their durations, > 0 logs only - # actions running at least this number - # of milliseconds. -#log_checkpoints = on -#log_connections = off -#log_disconnections = off -#log_duration = off -#log_error_verbosity = default # terse, default, or verbose messages -#log_hostname = off -#log_line_prefix = '%m [%p] ' # special values: - # %a = application name - # %u = user name - # %d = database name - # %r = remote host and port - # %h = remote host - # %b = backend type - # %p = process ID - # %P = process ID of parallel group leader - # %t = timestamp without milliseconds - # %m = timestamp with milliseconds - # %n = timestamp with milliseconds (as a Unix epoch) - # %Q = query ID (0 if none or not computed) - # %i = command tag - # %e = SQL state - # %c = session ID - # %l = session line number - # %s = session start timestamp - # %v = virtual transaction ID - # %x = transaction ID (0 if none) - # %q = stop here in non-session - # processes - # %% = '%' - # e.g. '<%u%%%d> ' -#log_lock_waits = off # log lock waits >= deadlock_timeout -#log_recovery_conflict_waits = off # log standby recovery conflict waits - # >= deadlock_timeout -#log_parameter_max_length = -1 # when logging statements, limit logged - # bind-parameter values to N bytes; - # -1 means print in full, 0 disables -#log_parameter_max_length_on_error = 0 # when logging an error, limit logged - # bind-parameter values to N bytes; - # -1 means print in full, 0 disables -#log_statement = 'none' # none, ddl, mod, all -#log_replication_commands = off -#log_temp_files = -1 # log temporary files equal or larger - # than the specified size in kilobytes; - # -1 disables, 0 logs all temp files -log_timezone = 'UTC' - - -#------------------------------------------------------------------------------ -# PROCESS TITLE -#------------------------------------------------------------------------------ - -#cluster_name = '' # added to process titles if nonempty - # (change requires restart) -#update_process_title = on - - -#------------------------------------------------------------------------------ -# STATISTICS -#------------------------------------------------------------------------------ - -# - Cumulative Query and Index Statistics - - -#track_activities = on -#track_activity_query_size = 1024 # (change requires restart) -#track_counts = on -#track_io_timing = off -#track_wal_io_timing = off -#track_functions = none # none, pl, all -#stats_fetch_consistency = cache - - -# - Monitoring - - -#compute_query_id = auto -#log_statement_stats = off -#log_parser_stats = off -#log_planner_stats = off -#log_executor_stats = off - - -#------------------------------------------------------------------------------ -# AUTOVACUUM -#------------------------------------------------------------------------------ - -#autovacuum = on # Enable autovacuum subprocess? 'on' - # requires track_counts to also be on. -#autovacuum_max_workers = 3 # max number of autovacuum subprocesses - # (change requires restart) -#autovacuum_naptime = 1min # time between autovacuum runs -#autovacuum_vacuum_threshold = 50 # min number of row updates before - # vacuum -#autovacuum_vacuum_insert_threshold = 1000 # min number of row inserts - # before vacuum; -1 disables insert - # vacuums -#autovacuum_analyze_threshold = 50 # min number of row updates before - # analyze -#autovacuum_vacuum_scale_factor = 0.2 # fraction of table size before vacuum -#autovacuum_vacuum_insert_scale_factor = 0.2 # fraction of inserts over table - # size before insert vacuum -#autovacuum_analyze_scale_factor = 0.1 # fraction of table size before analyze -#autovacuum_freeze_max_age = 200000000 # maximum XID age before forced vacuum - # (change requires restart) -#autovacuum_multixact_freeze_max_age = 400000000 # maximum multixact age - # before forced vacuum - # (change requires restart) -#autovacuum_vacuum_cost_delay = 2ms # default vacuum cost delay for - # autovacuum, in milliseconds; - # -1 means use vacuum_cost_delay -#autovacuum_vacuum_cost_limit = -1 # default vacuum cost limit for - # autovacuum, -1 means use - # vacuum_cost_limit - - -#------------------------------------------------------------------------------ -# CLIENT CONNECTION DEFAULTS -#------------------------------------------------------------------------------ - -# - Statement Behavior - - -#client_min_messages = notice # values in order of decreasing detail: - # debug5 - # debug4 - # debug3 - # debug2 - # debug1 - # log - # notice - # warning - # error -#search_path = '"$user", public' # schema names -#row_security = on -#default_table_access_method = 'heap' -#default_tablespace = '' # a tablespace name, '' uses the default -#default_toast_compression = 'pglz' # 'pglz' or 'lz4' -#temp_tablespaces = '' # a list of tablespace names, '' uses - # only default tablespace -#check_function_bodies = on -#default_transaction_isolation = 'read committed' -#default_transaction_read_only = off -#default_transaction_deferrable = off -#session_replication_role = 'origin' -#statement_timeout = 0 # in milliseconds, 0 is disabled -#lock_timeout = 0 # in milliseconds, 0 is disabled -#idle_in_transaction_session_timeout = 0 # in milliseconds, 0 is disabled -#idle_session_timeout = 0 # in milliseconds, 0 is disabled -#vacuum_freeze_table_age = 150000000 -#vacuum_freeze_min_age = 50000000 -#vacuum_failsafe_age = 1600000000 -#vacuum_multixact_freeze_table_age = 150000000 -#vacuum_multixact_freeze_min_age = 5000000 -#vacuum_multixact_failsafe_age = 1600000000 -#bytea_output = 'hex' # hex, escape -#xmlbinary = 'base64' -#xmloption = 'content' -#gin_pending_list_limit = 4MB - -# - Locale and Formatting - - -datestyle = 'iso, mdy' -#intervalstyle = 'postgres' -timezone = 'UTC' -#timezone_abbreviations = 'Default' # Select the set of available time zone - # abbreviations. Currently, there are - # Default - # Australia (historical usage) - # India - # You can create your own file in - # share/timezonesets/. -#extra_float_digits = 1 # min -15, max 3; any value >0 actually - # selects precise output mode -#client_encoding = sql_ascii # actually, defaults to database - # encoding - -# These settings are initialized by initdb, but they can be changed. -lc_messages = 'en_US.utf8' # locale for system error message - # strings -lc_monetary = 'en_US.utf8' # locale for monetary formatting -lc_numeric = 'en_US.utf8' # locale for number formatting -lc_time = 'en_US.utf8' # locale for time formatting - -# default configuration for text search -default_text_search_config = 'pg_catalog.english' - -# - Shared Library Preloading - - -#local_preload_libraries = '' -#session_preload_libraries = '' -#shared_preload_libraries = '' # (change requires restart) -#jit_provider = 'llvmjit' # JIT library to use - -# - Other Defaults - - -#dynamic_library_path = '$libdir' -#gin_fuzzy_search_limit = 0 - - -#------------------------------------------------------------------------------ -# LOCK MANAGEMENT -#------------------------------------------------------------------------------ - -#deadlock_timeout = 1s -#max_locks_per_transaction = 64 # min 10 - # (change requires restart) -#max_pred_locks_per_transaction = 64 # min 10 - # (change requires restart) -#max_pred_locks_per_relation = -2 # negative values mean - # (max_pred_locks_per_transaction - # / -max_pred_locks_per_relation) - 1 -#max_pred_locks_per_page = 2 # min 0 - - -#------------------------------------------------------------------------------ -# VERSION AND PLATFORM COMPATIBILITY -#------------------------------------------------------------------------------ - -# - Previous PostgreSQL Versions - - -#array_nulls = on -#backslash_quote = safe_encoding # on, off, or safe_encoding -#escape_string_warning = on -#lo_compat_privileges = off -#quote_all_identifiers = off -#standard_conforming_strings = on -#synchronize_seqscans = on - -# - Other Platforms and Clients - - -#transform_null_equals = off - - -#------------------------------------------------------------------------------ -# ERROR HANDLING -#------------------------------------------------------------------------------ - -#exit_on_error = off # terminate session on any error? -#restart_after_crash = on # reinitialize after backend crash? -#data_sync_retry = off # retry or panic on failure to fsync - # data? - # (change requires restart) -#recovery_init_sync_method = fsync # fsync, syncfs (Linux 5.8+) - - -#------------------------------------------------------------------------------ -# CONFIG FILE INCLUDES -#------------------------------------------------------------------------------ - -# These options allow settings to be loaded from files other than the -# default postgresql.conf. Note that these are directives, not variable -# assignments, so they can usefully be given more than once. - -#include_dir = '...' # include files ending in '.conf' from - # a directory, e.g., 'conf.d' -#include_if_exists = '...' # include file only if it exists -#include = '...' # include file - - -#------------------------------------------------------------------------------ -# CUSTOMIZED OPTIONS -#------------------------------------------------------------------------------ - -# Add settings for extensions here diff --git a/pre/docker/volumes/db/data/pgdata/postmaster.opts b/pre/docker/volumes/db/data/pgdata/postmaster.opts deleted file mode 100644 index bfef200..0000000 --- a/pre/docker/volumes/db/data/pgdata/postmaster.opts +++ /dev/null @@ -1 +0,0 @@ -/usr/local/bin/postgres "-c" "max_connections=100" "-c" "shared_buffers=128MB" "-c" "work_mem=4MB" "-c" "maintenance_work_mem=64MB" "-c" "effective_cache_size=4096MB" diff --git a/pre/docker/volumes/myscale/config/users.d/custom_users_config.xml b/pre/docker/volumes/myscale/config/users.d/custom_users_config.xml deleted file mode 100644 index 67f24b6..0000000 --- a/pre/docker/volumes/myscale/config/users.d/custom_users_config.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - ::1 - 127.0.0.1 - 10.0.0.0/8 - 172.16.0.0/12 - 192.168.0.0/16 - - default - default - 1 - - - \ No newline at end of file diff --git a/pre/docker/volumes/oceanbase/init.d/vec_memory.sql b/pre/docker/volumes/oceanbase/init.d/vec_memory.sql deleted file mode 100644 index f4c283f..0000000 --- a/pre/docker/volumes/oceanbase/init.d/vec_memory.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER SYSTEM SET ob_vector_memory_limit_percentage = 30; \ No newline at end of file diff --git a/pre/docker/volumes/opensearch/opensearch_dashboards.yml b/pre/docker/volumes/opensearch/opensearch_dashboards.yml deleted file mode 100644 index f50d63b..0000000 --- a/pre/docker/volumes/opensearch/opensearch_dashboards.yml +++ /dev/null @@ -1,222 +0,0 @@ ---- -# Copyright OpenSearch Contributors -# SPDX-License-Identifier: Apache-2.0 - -# Description: -# Default configuration for OpenSearch Dashboards - -# OpenSearch Dashboards is served by a back end server. This setting specifies the port to use. -# server.port: 5601 - -# Specifies the address to which the OpenSearch Dashboards server will bind. IP addresses and host names are both valid values. -# The default is 'localhost', which usually means remote machines will not be able to connect. -# To allow connections from remote users, set this parameter to a non-loopback address. -# server.host: "localhost" - -# Enables you to specify a path to mount OpenSearch Dashboards at if you are running behind a proxy. -# Use the `server.rewriteBasePath` setting to tell OpenSearch Dashboards if it should remove the basePath -# from requests it receives, and to prevent a deprecation warning at startup. -# This setting cannot end in a slash. -# server.basePath: "" - -# Specifies whether OpenSearch Dashboards should rewrite requests that are prefixed with -# `server.basePath` or require that they are rewritten by your reverse proxy. -# server.rewriteBasePath: false - -# The maximum payload size in bytes for incoming server requests. -# server.maxPayloadBytes: 1048576 - -# The OpenSearch Dashboards server's name. This is used for display purposes. -# server.name: "your-hostname" - -# The URLs of the OpenSearch instances to use for all your queries. -# opensearch.hosts: ["http://localhost:9200"] - -# OpenSearch Dashboards uses an index in OpenSearch to store saved searches, visualizations and -# dashboards. OpenSearch Dashboards creates a new index if the index doesn't already exist. -# opensearchDashboards.index: ".opensearch_dashboards" - -# The default application to load. -# opensearchDashboards.defaultAppId: "home" - -# Setting for an optimized healthcheck that only uses the local OpenSearch node to do Dashboards healthcheck. -# This settings should be used for large clusters or for clusters with ingest heavy nodes. -# It allows Dashboards to only healthcheck using the local OpenSearch node rather than fan out requests across all nodes. -# -# It requires the user to create an OpenSearch node attribute with the same name as the value used in the setting -# This node attribute should assign all nodes of the same cluster an integer value that increments with each new cluster that is spun up -# e.g. in opensearch.yml file you would set the value to a setting using node.attr.cluster_id: -# Should only be enabled if there is a corresponding node attribute created in your OpenSearch config that matches the value here -# opensearch.optimizedHealthcheckId: "cluster_id" - -# If your OpenSearch is protected with basic authentication, these settings provide -# the username and password that the OpenSearch Dashboards server uses to perform maintenance on the OpenSearch Dashboards -# index at startup. Your OpenSearch Dashboards users still need to authenticate with OpenSearch, which -# is proxied through the OpenSearch Dashboards server. -# opensearch.username: "opensearch_dashboards_system" -# opensearch.password: "pass" - -# Enables SSL and paths to the PEM-format SSL certificate and SSL key files, respectively. -# These settings enable SSL for outgoing requests from the OpenSearch Dashboards server to the browser. -# server.ssl.enabled: false -# server.ssl.certificate: /path/to/your/server.crt -# server.ssl.key: /path/to/your/server.key - -# Optional settings that provide the paths to the PEM-format SSL certificate and key files. -# These files are used to verify the identity of OpenSearch Dashboards to OpenSearch and are required when -# xpack.security.http.ssl.client_authentication in OpenSearch is set to required. -# opensearch.ssl.certificate: /path/to/your/client.crt -# opensearch.ssl.key: /path/to/your/client.key - -# Optional setting that enables you to specify a path to the PEM file for the certificate -# authority for your OpenSearch instance. -# opensearch.ssl.certificateAuthorities: [ "/path/to/your/CA.pem" ] - -# To disregard the validity of SSL certificates, change this setting's value to 'none'. -# opensearch.ssl.verificationMode: full - -# Time in milliseconds to wait for OpenSearch to respond to pings. Defaults to the value of -# the opensearch.requestTimeout setting. -# opensearch.pingTimeout: 1500 - -# Time in milliseconds to wait for responses from the back end or OpenSearch. This value -# must be a positive integer. -# opensearch.requestTimeout: 30000 - -# List of OpenSearch Dashboards client-side headers to send to OpenSearch. To send *no* client-side -# headers, set this value to [] (an empty list). -# opensearch.requestHeadersWhitelist: [ authorization ] - -# Header names and values that are sent to OpenSearch. Any custom headers cannot be overwritten -# by client-side headers, regardless of the opensearch.requestHeadersWhitelist configuration. -# opensearch.customHeaders: {} - -# Time in milliseconds for OpenSearch to wait for responses from shards. Set to 0 to disable. -# opensearch.shardTimeout: 30000 - -# Logs queries sent to OpenSearch. Requires logging.verbose set to true. -# opensearch.logQueries: false - -# Specifies the path where OpenSearch Dashboards creates the process ID file. -# pid.file: /var/run/opensearchDashboards.pid - -# Enables you to specify a file where OpenSearch Dashboards stores log output. -# logging.dest: stdout - -# Set the value of this setting to true to suppress all logging output. -# logging.silent: false - -# Set the value of this setting to true to suppress all logging output other than error messages. -# logging.quiet: false - -# Set the value of this setting to true to log all events, including system usage information -# and all requests. -# logging.verbose: false - -# Set the interval in milliseconds to sample system and process performance -# metrics. Minimum is 100ms. Defaults to 5000. -# ops.interval: 5000 - -# Specifies locale to be used for all localizable strings, dates and number formats. -# Supported languages are the following: English - en , by default , Chinese - zh-CN . -# i18n.locale: "en" - -# Set the allowlist to check input graphite Url. Allowlist is the default check list. -# vis_type_timeline.graphiteAllowedUrls: ['https://www.hostedgraphite.com/UID/ACCESS_KEY/graphite'] - -# Set the blocklist to check input graphite Url. Blocklist is an IP list. -# Below is an example for reference -# vis_type_timeline.graphiteBlockedIPs: [ -# //Loopback -# '127.0.0.0/8', -# '::1/128', -# //Link-local Address for IPv6 -# 'fe80::/10', -# //Private IP address for IPv4 -# '10.0.0.0/8', -# '172.16.0.0/12', -# '192.168.0.0/16', -# //Unique local address (ULA) -# 'fc00::/7', -# //Reserved IP address -# '0.0.0.0/8', -# '100.64.0.0/10', -# '192.0.0.0/24', -# '192.0.2.0/24', -# '198.18.0.0/15', -# '192.88.99.0/24', -# '198.51.100.0/24', -# '203.0.113.0/24', -# '224.0.0.0/4', -# '240.0.0.0/4', -# '255.255.255.255/32', -# '::/128', -# '2001:db8::/32', -# 'ff00::/8', -# ] -# vis_type_timeline.graphiteBlockedIPs: [] - -# opensearchDashboards.branding: -# logo: -# defaultUrl: "" -# darkModeUrl: "" -# mark: -# defaultUrl: "" -# darkModeUrl: "" -# loadingLogo: -# defaultUrl: "" -# darkModeUrl: "" -# faviconUrl: "" -# applicationTitle: "" - -# Set the value of this setting to true to capture region blocked warnings and errors -# for your map rendering services. -# map.showRegionBlockedWarning: false% - -# Set the value of this setting to false to suppress search usage telemetry -# for reducing the load of OpenSearch cluster. -# data.search.usageTelemetry.enabled: false - -# 2.4 renames 'wizard.enabled: false' to 'vis_builder.enabled: false' -# Set the value of this setting to false to disable VisBuilder -# functionality in Visualization. -# vis_builder.enabled: false - -# 2.4 New Experimental Feature -# Set the value of this setting to true to enable the experimental multiple data source -# support feature. Use with caution. -# data_source.enabled: false -# Set the value of these settings to customize crypto materials to encryption saved credentials -# in data sources. -# data_source.encryption.wrappingKeyName: 'changeme' -# data_source.encryption.wrappingKeyNamespace: 'changeme' -# data_source.encryption.wrappingKey: [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] - -# 2.6 New ML Commons Dashboards Feature -# Set the value of this setting to true to enable the ml commons dashboards -# ml_commons_dashboards.enabled: false - -# 2.12 New experimental Assistant Dashboards Feature -# Set the value of this setting to true to enable the assistant dashboards -# assistant.chat.enabled: false - -# 2.13 New Query Assistant Feature -# Set the value of this setting to false to disable the query assistant -# observability.query_assist.enabled: false - -# 2.14 Enable Ui Metric Collectors in Usage Collector -# Set the value of this setting to true to enable UI Metric collections -# usageCollection.uiMetric.enabled: false - -opensearch.hosts: [https://localhost:9200] -opensearch.ssl.verificationMode: none -opensearch.username: admin -opensearch.password: 'Qazwsxedc!@#123' -opensearch.requestHeadersWhitelist: [authorization, securitytenant] - -opensearch_security.multitenancy.enabled: true -opensearch_security.multitenancy.tenants.preferred: [Private, Global] -opensearch_security.readonly_mode.roles: [kibana_read_only] -# Use this setting if you are running opensearch-dashboards without https -opensearch_security.cookie.secure: false -server.host: '0.0.0.0' diff --git a/pre/docker/volumes/redis/data/dump.rdb b/pre/docker/volumes/redis/data/dump.rdb deleted file mode 100644 index e8ebad9..0000000 Binary files a/pre/docker/volumes/redis/data/dump.rdb and /dev/null differ diff --git a/pre/docker/volumes/sandbox/conf/config.yaml b/pre/docker/volumes/sandbox/conf/config.yaml deleted file mode 100644 index 8c1a1de..0000000 --- a/pre/docker/volumes/sandbox/conf/config.yaml +++ /dev/null @@ -1,14 +0,0 @@ -app: - port: 8194 - debug: True - key: dify-sandbox -max_workers: 4 -max_requests: 50 -worker_timeout: 5 -python_path: /usr/local/bin/python3 -enable_network: True # please make sure there is no network risk in your environment -allowed_syscalls: # please leave it empty if you have no idea how seccomp works -proxy: - socks5: '' - http: '' - https: '' diff --git a/pre/docker/volumes/sandbox/conf/config.yaml.example b/pre/docker/volumes/sandbox/conf/config.yaml.example deleted file mode 100644 index f92c19e..0000000 --- a/pre/docker/volumes/sandbox/conf/config.yaml.example +++ /dev/null @@ -1,35 +0,0 @@ -app: - port: 8194 - debug: True - key: dify-sandbox -max_workers: 4 -max_requests: 50 -worker_timeout: 5 -python_path: /usr/local/bin/python3 -python_lib_path: - - /usr/local/lib/python3.10 - - /usr/lib/python3.10 - - /usr/lib/python3 - - /usr/lib/x86_64-linux-gnu - - /etc/ssl/certs/ca-certificates.crt - - /etc/nsswitch.conf - - /etc/hosts - - /etc/resolv.conf - - /run/systemd/resolve/stub-resolv.conf - - /run/resolvconf/resolv.conf - - /etc/localtime - - /usr/share/zoneinfo - - /etc/timezone - # add more paths if needed -python_pip_mirror_url: https://pypi.tuna.tsinghua.edu.cn/simple -nodejs_path: /usr/local/bin/node -enable_network: True -allowed_syscalls: - - 1 - - 2 - - 3 - # add all the syscalls which you require -proxy: - socks5: '' - http: '' - https: '' diff --git a/pre/docker/volumes/sandbox/dependencies/python-requirements.txt b/pre/docker/volumes/sandbox/dependencies/python-requirements.txt deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/weaviate/classifications.db b/pre/docker/volumes/weaviate/classifications.db deleted file mode 100644 index 0febf86..0000000 Binary files a/pre/docker/volumes/weaviate/classifications.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/migration1.19.filter2search.skip.flag b/pre/docker/volumes/weaviate/migration1.19.filter2search.skip.flag deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/weaviate/migration1.19.filter2search.state b/pre/docker/volumes/weaviate/migration1.19.filter2search.state deleted file mode 100644 index e69de29..0000000 diff --git a/pre/docker/volumes/weaviate/modules.db b/pre/docker/volumes/weaviate/modules.db deleted file mode 100644 index e449c28..0000000 Binary files a/pre/docker/volumes/weaviate/modules.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/schema.db b/pre/docker/volumes/weaviate/schema.db deleted file mode 100644 index d92e809..0000000 Binary files a/pre/docker/volumes/weaviate/schema.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT.hnsw.commitlog.d/1738303801 b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT.hnsw.commitlog.d/1738303801 deleted file mode 100644 index 35db2c4..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT.hnsw.commitlog.d/1738303801 and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT.indexcount b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT.indexcount deleted file mode 100644 index 0d0b66a..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT.indexcount and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT.proplengths b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT.proplengths deleted file mode 100644 index a5a4e93..0000000 --- a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT.proplengths +++ /dev/null @@ -1 +0,0 @@ -{"BucketedData":{"dataset_id":{"4":1},"doc_hash":{"0":1},"doc_id":{"4":1},"document_id":{"4":1},"source":{"3":1},"text":{"0":0,"1":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"2":1,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0}},"SumData":{"dataset_id":5,"doc_hash":1,"doc_id":5,"document_id":5,"source":4,"text":3},"CountData":{"dataset_id":1,"doc_hash":1,"doc_id":1,"document_id":1,"source":1,"text":1}} \ No newline at end of file diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT.proplengths.bak b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT.proplengths.bak deleted file mode 100644 index a5a4e93..0000000 --- a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT.proplengths.bak +++ /dev/null @@ -1 +0,0 @@ -{"BucketedData":{"dataset_id":{"4":1},"doc_hash":{"0":1},"doc_id":{"4":1},"document_id":{"4":1},"source":{"3":1},"text":{"0":0,"1":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"2":1,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0}},"SumData":{"dataset_id":5,"doc_hash":1,"doc_id":5,"document_id":5,"source":4,"text":3},"CountData":{"dataset_id":1,"doc_hash":1,"doc_id":1,"document_id":1,"source":1,"text":1}} \ No newline at end of file diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT.version b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT.version deleted file mode 100644 index 5407bf3..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT.version and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/objects/segment-1738306763999020340.bloom b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/objects/segment-1738306763999020340.bloom deleted file mode 100644 index 63db643..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/objects/segment-1738306763999020340.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/objects/segment-1738306763999020340.cna b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/objects/segment-1738306763999020340.cna deleted file mode 100644 index 2f998cc..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/objects/segment-1738306763999020340.cna and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/objects/segment-1738306763999020340.db b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/objects/segment-1738306763999020340.db deleted file mode 100644 index bc3aacd..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/objects/segment-1738306763999020340.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/objects/segment-1738306763999020340.secondary.0.bloom b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/objects/segment-1738306763999020340.secondary.0.bloom deleted file mode 100644 index 4a0a7af..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/objects/segment-1738306763999020340.secondary.0.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/objects/segment-1738307693728177738.bloom b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/objects/segment-1738307693728177738.bloom deleted file mode 100644 index 0f423b1..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/objects/segment-1738307693728177738.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/objects/segment-1738307693728177738.cna b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/objects/segment-1738307693728177738.cna deleted file mode 100644 index 5b68467..0000000 --- a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/objects/segment-1738307693728177738.cna +++ /dev/null @@ -1 +0,0 @@ -l( \ No newline at end of file diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/objects/segment-1738307693728177738.db b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/objects/segment-1738307693728177738.db deleted file mode 100644 index da9a289..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/objects/segment-1738307693728177738.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/objects/segment-1738307693728177738.secondary.0.bloom b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/objects/segment-1738307693728177738.secondary.0.bloom deleted file mode 100644 index 0b8fac2..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/objects/segment-1738307693728177738.secondary.0.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property__id/segment-1738306763976735395.bloom b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property__id/segment-1738306763976735395.bloom deleted file mode 100644 index e1142e7..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property__id/segment-1738306763976735395.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property__id/segment-1738306763976735395.db b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property__id/segment-1738306763976735395.db deleted file mode 100644 index b952a01..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property__id/segment-1738306763976735395.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property__id/segment-1738307693698007924.bloom b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property__id/segment-1738307693698007924.bloom deleted file mode 100644 index 84bb629..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property__id/segment-1738307693698007924.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property__id/segment-1738307693698007924.db b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property__id/segment-1738307693698007924.db deleted file mode 100644 index a54091f..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property__id/segment-1738307693698007924.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_dataset_id/segment-1738306764202170086.bloom b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_dataset_id/segment-1738306764202170086.bloom deleted file mode 100644 index 15c5dc7..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_dataset_id/segment-1738306764202170086.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_dataset_id/segment-1738306764202170086.db b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_dataset_id/segment-1738306764202170086.db deleted file mode 100644 index 6793568..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_dataset_id/segment-1738306764202170086.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_dataset_id/segment-1738307693931721439.bloom b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_dataset_id/segment-1738307693931721439.bloom deleted file mode 100644 index 15c5dc7..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_dataset_id/segment-1738307693931721439.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_dataset_id/segment-1738307693931721439.db b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_dataset_id/segment-1738307693931721439.db deleted file mode 100644 index f9c3ebf..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_dataset_id/segment-1738307693931721439.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_dataset_id_searchable/segment-1738306764202206551.bloom b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_dataset_id_searchable/segment-1738306764202206551.bloom deleted file mode 100644 index 15c5dc7..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_dataset_id_searchable/segment-1738306764202206551.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_dataset_id_searchable/segment-1738306764202206551.db b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_dataset_id_searchable/segment-1738306764202206551.db deleted file mode 100644 index 4ea9d6b..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_dataset_id_searchable/segment-1738306764202206551.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_dataset_id_searchable/segment-1738307693938978163.bloom b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_dataset_id_searchable/segment-1738307693938978163.bloom deleted file mode 100644 index 15c5dc7..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_dataset_id_searchable/segment-1738307693938978163.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_dataset_id_searchable/segment-1738307693938978163.db b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_dataset_id_searchable/segment-1738307693938978163.db deleted file mode 100644 index 1128b4d..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_dataset_id_searchable/segment-1738307693938978163.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_hash/segment-1738306764259966395.bloom b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_hash/segment-1738306764259966395.bloom deleted file mode 100644 index d309ae4..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_hash/segment-1738306764259966395.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_hash/segment-1738306764259966395.db b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_hash/segment-1738306764259966395.db deleted file mode 100644 index 04dcfea..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_hash/segment-1738306764259966395.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_hash/segment-1738307693994702311.bloom b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_hash/segment-1738307693994702311.bloom deleted file mode 100644 index 9174abb..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_hash/segment-1738307693994702311.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_hash/segment-1738307693994702311.db b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_hash/segment-1738307693994702311.db deleted file mode 100644 index bdfcba2..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_hash/segment-1738307693994702311.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_hash_searchable/segment-1738306764259967100.bloom b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_hash_searchable/segment-1738306764259967100.bloom deleted file mode 100644 index d309ae4..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_hash_searchable/segment-1738306764259967100.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_hash_searchable/segment-1738306764259967100.db b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_hash_searchable/segment-1738306764259967100.db deleted file mode 100644 index 2d336c6..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_hash_searchable/segment-1738306764259967100.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_hash_searchable/segment-1738307693994699830.bloom b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_hash_searchable/segment-1738307693994699830.bloom deleted file mode 100644 index 9174abb..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_hash_searchable/segment-1738307693994699830.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_hash_searchable/segment-1738307693994699830.db b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_hash_searchable/segment-1738307693994699830.db deleted file mode 100644 index 083c38e..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_hash_searchable/segment-1738307693994699830.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_id/segment-1738306764253059338.bloom b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_id/segment-1738306764253059338.bloom deleted file mode 100644 index 191ffe3..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_id/segment-1738306764253059338.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_id/segment-1738306764253059338.db b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_id/segment-1738306764253059338.db deleted file mode 100644 index 8abb7be..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_id/segment-1738306764253059338.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_id/segment-1738307694000892308.bloom b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_id/segment-1738307694000892308.bloom deleted file mode 100644 index 8b6271b..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_id/segment-1738307694000892308.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_id/segment-1738307694000892308.db b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_id/segment-1738307694000892308.db deleted file mode 100644 index a251ba1..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_id/segment-1738307694000892308.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_id_searchable/segment-1738306764236920422.bloom b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_id_searchable/segment-1738306764236920422.bloom deleted file mode 100644 index 191ffe3..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_id_searchable/segment-1738306764236920422.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_id_searchable/segment-1738306764236920422.db b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_id_searchable/segment-1738306764236920422.db deleted file mode 100644 index 20a0e25..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_id_searchable/segment-1738306764236920422.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_id_searchable/segment-1738307693977531040.bloom b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_id_searchable/segment-1738307693977531040.bloom deleted file mode 100644 index 8b6271b..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_id_searchable/segment-1738307693977531040.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_id_searchable/segment-1738307693977531040.db b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_id_searchable/segment-1738307693977531040.db deleted file mode 100644 index 267b4bd..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_doc_id_searchable/segment-1738307693977531040.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_document_id/segment-1738306764165632583.bloom b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_document_id/segment-1738306764165632583.bloom deleted file mode 100644 index c96d89f..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_document_id/segment-1738306764165632583.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_document_id/segment-1738306764165632583.db b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_document_id/segment-1738306764165632583.db deleted file mode 100644 index e1fa76f..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_document_id/segment-1738306764165632583.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_document_id/segment-1738307693895937665.bloom b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_document_id/segment-1738307693895937665.bloom deleted file mode 100644 index 4a166dd..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_document_id/segment-1738307693895937665.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_document_id/segment-1738307693895937665.db b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_document_id/segment-1738307693895937665.db deleted file mode 100644 index 5c41aff..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_document_id/segment-1738307693895937665.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_document_id_searchable/segment-1738306764165632575.bloom b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_document_id_searchable/segment-1738306764165632575.bloom deleted file mode 100644 index c96d89f..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_document_id_searchable/segment-1738306764165632575.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_document_id_searchable/segment-1738306764165632575.db b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_document_id_searchable/segment-1738306764165632575.db deleted file mode 100644 index fb6abac..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_document_id_searchable/segment-1738306764165632575.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_document_id_searchable/segment-1738307693895891272.bloom b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_document_id_searchable/segment-1738307693895891272.bloom deleted file mode 100644 index 4a166dd..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_document_id_searchable/segment-1738307693895891272.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_document_id_searchable/segment-1738307693895891272.db b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_document_id_searchable/segment-1738307693895891272.db deleted file mode 100644 index 058207d..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_document_id_searchable/segment-1738307693895891272.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_page/segment-1738306764131647138.bloom b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_page/segment-1738306764131647138.bloom deleted file mode 100644 index cfb4b7b..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_page/segment-1738306764131647138.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_page/segment-1738306764131647138.db b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_page/segment-1738306764131647138.db deleted file mode 100644 index 75a29c2..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_page/segment-1738306764131647138.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_source/segment-1738306764109353328.bloom b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_source/segment-1738306764109353328.bloom deleted file mode 100644 index a7550a8..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_source/segment-1738306764109353328.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_source/segment-1738306764109353328.db b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_source/segment-1738306764109353328.db deleted file mode 100644 index 7fb36b4..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_source/segment-1738306764109353328.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_source/segment-1738307693840563071.bloom b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_source/segment-1738307693840563071.bloom deleted file mode 100644 index 8138b09..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_source/segment-1738307693840563071.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_source/segment-1738307693840563071.db b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_source/segment-1738307693840563071.db deleted file mode 100644 index 58fa68e..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_source/segment-1738307693840563071.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_source_searchable/segment-1738306764095039087.bloom b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_source_searchable/segment-1738306764095039087.bloom deleted file mode 100644 index a7550a8..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_source_searchable/segment-1738306764095039087.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_source_searchable/segment-1738306764095039087.db b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_source_searchable/segment-1738306764095039087.db deleted file mode 100644 index 65d2fdc..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_source_searchable/segment-1738306764095039087.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_source_searchable/segment-1738307693830037675.bloom b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_source_searchable/segment-1738307693830037675.bloom deleted file mode 100644 index 8138b09..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_source_searchable/segment-1738307693830037675.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_source_searchable/segment-1738307693830037675.db b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_source_searchable/segment-1738307693830037675.db deleted file mode 100644 index 5169d89..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_source_searchable/segment-1738307693830037675.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_text/segment-1738306764032619196.bloom b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_text/segment-1738306764032619196.bloom deleted file mode 100644 index c21a9ae..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_text/segment-1738306764032619196.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_text/segment-1738306764032619196.db b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_text/segment-1738306764032619196.db deleted file mode 100644 index 070c4c3..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_text/segment-1738306764032619196.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_text/segment-1738307693786926829.bloom b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_text/segment-1738307693786926829.bloom deleted file mode 100644 index 616f40b..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_text/segment-1738307693786926829.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_text/segment-1738307693786926829.db b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_text/segment-1738307693786926829.db deleted file mode 100644 index b829549..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_text/segment-1738307693786926829.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_text_searchable/segment-1738306764017231066.bloom b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_text_searchable/segment-1738306764017231066.bloom deleted file mode 100644 index c21a9ae..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_text_searchable/segment-1738306764017231066.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_text_searchable/segment-1738306764017231066.db b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_text_searchable/segment-1738306764017231066.db deleted file mode 100644 index eade1fd..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_text_searchable/segment-1738306764017231066.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_text_searchable/segment-1738307693760420433.bloom b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_text_searchable/segment-1738307693760420433.bloom deleted file mode 100644 index 616f40b..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_text_searchable/segment-1738307693760420433.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_text_searchable/segment-1738307693760420433.db b/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_text_searchable/segment-1738307693760420433.db deleted file mode 100644 index d1efc59..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_4e479986_64ff_4929_b8e4_f290cc76fdb0_node_ww12UcZNYPVT_lsm/property_text_searchable/segment-1738307693760420433.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU.hnsw.commitlog.d/1738307341 b/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU.hnsw.commitlog.d/1738307341 deleted file mode 100644 index 8af1c3b..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU.hnsw.commitlog.d/1738307341 and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU.indexcount b/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU.indexcount deleted file mode 100644 index f1dba9d..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU.indexcount and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU.proplengths b/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU.proplengths deleted file mode 100644 index dcc85af..0000000 --- a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU.proplengths +++ /dev/null @@ -1 +0,0 @@ -{"BucketedData":{"annotation_id":{"4":0},"app_id":{"4":0},"doc_id":{"4":0},"text":{"0":0}},"SumData":{"annotation_id":0,"app_id":0,"doc_id":0,"text":0},"CountData":{"annotation_id":0,"app_id":0,"doc_id":0,"text":0}} \ No newline at end of file diff --git a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU.proplengths.bak b/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU.proplengths.bak deleted file mode 100644 index dcc85af..0000000 --- a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU.proplengths.bak +++ /dev/null @@ -1 +0,0 @@ -{"BucketedData":{"annotation_id":{"4":0},"app_id":{"4":0},"doc_id":{"4":0},"text":{"0":0}},"SumData":{"annotation_id":0,"app_id":0,"doc_id":0,"text":0},"CountData":{"annotation_id":0,"app_id":0,"doc_id":0,"text":0}} \ No newline at end of file diff --git a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU.version b/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU.version deleted file mode 100644 index 5407bf3..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU.version and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/objects/segment-1738307341714670744.bloom b/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/objects/segment-1738307341714670744.bloom deleted file mode 100644 index 7dd49ab..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/objects/segment-1738307341714670744.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/objects/segment-1738307341714670744.cna b/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/objects/segment-1738307341714670744.cna deleted file mode 100644 index 4bce0d0..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/objects/segment-1738307341714670744.cna and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/objects/segment-1738307341714670744.db b/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/objects/segment-1738307341714670744.db deleted file mode 100644 index fdc7c60..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/objects/segment-1738307341714670744.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/objects/segment-1738307341714670744.secondary.0.bloom b/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/objects/segment-1738307341714670744.secondary.0.bloom deleted file mode 100644 index 7591d91..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/objects/segment-1738307341714670744.secondary.0.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property__id/segment-1738307341714865059.bloom b/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property__id/segment-1738307341714865059.bloom deleted file mode 100644 index 4372006..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property__id/segment-1738307341714865059.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property__id/segment-1738307341714865059.db b/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property__id/segment-1738307341714865059.db deleted file mode 100644 index 5beb020..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property__id/segment-1738307341714865059.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_annotation_id/segment-1738307341782716683.bloom b/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_annotation_id/segment-1738307341782716683.bloom deleted file mode 100644 index 920f833..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_annotation_id/segment-1738307341782716683.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_annotation_id/segment-1738307341782716683.db b/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_annotation_id/segment-1738307341782716683.db deleted file mode 100644 index 2f6aded..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_annotation_id/segment-1738307341782716683.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_annotation_id_searchable/segment-1738307341782829303.bloom b/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_annotation_id_searchable/segment-1738307341782829303.bloom deleted file mode 100644 index 920f833..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_annotation_id_searchable/segment-1738307341782829303.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_annotation_id_searchable/segment-1738307341782829303.db b/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_annotation_id_searchable/segment-1738307341782829303.db deleted file mode 100644 index 7746a66..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_annotation_id_searchable/segment-1738307341782829303.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_app_id/segment-1738307341807176778.bloom b/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_app_id/segment-1738307341807176778.bloom deleted file mode 100644 index 0921fd8..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_app_id/segment-1738307341807176778.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_app_id/segment-1738307341807176778.db b/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_app_id/segment-1738307341807176778.db deleted file mode 100644 index 25168d7..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_app_id/segment-1738307341807176778.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_app_id_searchable/segment-1738307341807260646.bloom b/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_app_id_searchable/segment-1738307341807260646.bloom deleted file mode 100644 index 0921fd8..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_app_id_searchable/segment-1738307341807260646.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_app_id_searchable/segment-1738307341807260646.db b/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_app_id_searchable/segment-1738307341807260646.db deleted file mode 100644 index 299e66b..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_app_id_searchable/segment-1738307341807260646.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_doc_id/segment-1738307341758276942.bloom b/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_doc_id/segment-1738307341758276942.bloom deleted file mode 100644 index 920f833..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_doc_id/segment-1738307341758276942.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_doc_id/segment-1738307341758276942.db b/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_doc_id/segment-1738307341758276942.db deleted file mode 100644 index 2f6aded..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_doc_id/segment-1738307341758276942.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_doc_id_searchable/segment-1738307341758342123.bloom b/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_doc_id_searchable/segment-1738307341758342123.bloom deleted file mode 100644 index 920f833..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_doc_id_searchable/segment-1738307341758342123.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_doc_id_searchable/segment-1738307341758342123.db b/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_doc_id_searchable/segment-1738307341758342123.db deleted file mode 100644 index 7746a66..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_doc_id_searchable/segment-1738307341758342123.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_text/segment-1738307341714882019.bloom b/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_text/segment-1738307341714882019.bloom deleted file mode 100644 index d6810de..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_text/segment-1738307341714882019.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_text/segment-1738307341714882019.db b/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_text/segment-1738307341714882019.db deleted file mode 100644 index 0d2eb00..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_text/segment-1738307341714882019.db and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_text_searchable/segment-1738307341714958287.bloom b/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_text_searchable/segment-1738307341714958287.bloom deleted file mode 100644 index d6810de..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_text_searchable/segment-1738307341714958287.bloom and /dev/null differ diff --git a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_text_searchable/segment-1738307341714958287.db b/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_text_searchable/segment-1738307341714958287.db deleted file mode 100644 index 1be0102..0000000 Binary files a/pre/docker/volumes/weaviate/vector_index_e8d0f0f5_c17d_420e_a8d7_00e86c3f931d_node_vasGTlU4cVYU_lsm/property_text_searchable/segment-1738307341714958287.db and /dev/null differ