We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No description provided.
The text was updated successfully, but these errors were encountered:
我尝试提高docker-compose.yml中几个服务的资源限制,发现没起作用。以下是调整后的配置: version: "3.7" services: server: restart: always image: spg-registry.cn-hangzhou.cr.aliyuncs.com/spg/openspg-server:latest container_name: release-openspg-server ports: - "8887:8887" depends_on: - mysql - neo4j volumes: - /etc/localtime:/etc/localtime:ro environment: TZ: Asia/Shanghai LANG: C.UTF-8 command: [ "java", "-Dfile.encoding=UTF-8", "-Xms24g", "-Xmx24g", "-jar", "arks-sofaboot-0.0.1-SNAPSHOT-executable.jar", '--server.repository.impl.jdbc.host=mysql', '--server.repository.impl.jdbc.password=openspg', '--cloudext.graphstore.url=neo4j://release-openspg-neo4j:7687?user=neo4j&password=neo4j@openspg&database=neo4j', '--cloudext.searchengine.url=neo4j://release-openspg-neo4j:7687?user=neo4j&password=neo4j@openspg&database=neo4j' ]
mysql: restart: always image: spg-registry.cn-hangzhou.cr.aliyuncs.com/spg/openspg-mysql:latest container_name: release-openspg-mysql volumes: - /etc/localtime:/etc/localtime:ro environment: TZ: Asia/Shanghai LANG: C.UTF-8 MYSQL_ROOT_PASSWORD: openspg MYSQL_DATABASE: openspg ports: - "3306:3306" command: [ '--character-set-server=utf8mb4', '--collation-server=utf8mb4_general_ci' ]
neo4j: image: spg-registry.cn-hangzhou.cr.aliyuncs.com/spg/openspg-neo4j:latest container_name: release-openspg-neo4j ports: - "7474:7474" - "7687:7687" environment: - TZ=Asia/Shanghai - NEO4J_AUTH=neo4j/neo4j@openspg - NEO4J_PLUGINS=["apoc"] - NEO4J_server_memory_heap_initial__size=32G - NEO4J_server_memory_heap_max__size=48G - NEO4J_server_memory_pagecache_size=16G - NEO4J_apoc_export_file_enabled=true - NEO4J_apoc_import_file_enabled=true - NEO4J_dbms_security_procedures_unrestricted=* - NEO4J_dbms_security_procedures_allowlist=* volumes: - /etc/localtime:/etc/localtime:ro - $HOME/dozerdb/logs:/logs
Sorry, something went wrong.
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: