| # |
| # Licensed to the Apache Software Foundation (ASF) under one or more |
| # contributor license agreements. See the NOTICE file distributed with |
| # this work for additional information regarding copyright ownership. |
| # The ASF licenses this file to You under the Apache License, Version 2.0 |
| # (the "License"); you may not use this file except in compliance with |
| # the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| # |
| |
| name: hugegraph-single |
| |
| networks: |
| hg-net: |
| driver: bridge |
| |
| volumes: |
| hg-pd-data: |
| hg-store-data: |
| |
| services: |
| pd: |
| build: |
| context: .. |
| dockerfile: hugegraph-pd/Dockerfile |
| container_name: hg-pd |
| hostname: pd |
| restart: unless-stopped |
| networks: [hg-net] |
| environment: |
| HG_PD_GRPC_HOST: pd |
| HG_PD_GRPC_PORT: "8686" |
| HG_PD_REST_PORT: "8620" |
| HG_PD_RAFT_ADDRESS: pd:8610 |
| HG_PD_RAFT_PEERS_LIST: pd:8610 |
| HG_PD_INITIAL_STORE_LIST: store:8500 |
| HG_PD_DATA_PATH: /hugegraph-pd/pd_data |
| ports: |
| - "8620:8620" |
| volumes: |
| - hg-pd-data:/hugegraph-pd/pd_data |
| healthcheck: |
| test: ["CMD-SHELL", "curl -fsS http://localhost:8620/v1/health >/dev/null || exit 1"] |
| interval: 10s |
| timeout: 5s |
| retries: 12 |
| start_period: 20s |
| |
| store: |
| build: |
| context: .. |
| dockerfile: hugegraph-store/Dockerfile |
| container_name: hg-store |
| hostname: store |
| restart: unless-stopped |
| networks: [hg-net] |
| depends_on: |
| pd: |
| condition: service_healthy |
| environment: |
| HG_STORE_PD_ADDRESS: pd:8686 |
| HG_STORE_GRPC_HOST: store |
| HG_STORE_GRPC_PORT: "8500" |
| HG_STORE_REST_PORT: "8520" |
| HG_STORE_RAFT_ADDRESS: store:8510 |
| HG_STORE_DATA_PATH: /hugegraph-store/storage |
| ports: |
| - "8520:8520" |
| volumes: |
| - hg-store-data:/hugegraph-store/storage |
| healthcheck: |
| test: ["CMD-SHELL", "curl -fsS http://localhost:8520/v1/health >/dev/null || exit 1"] |
| interval: 10s |
| timeout: 10s |
| retries: 30 |
| start_period: 30s |
| |
| server: |
| build: |
| context: .. |
| dockerfile: hugegraph-server/Dockerfile-hstore |
| container_name: hg-server |
| hostname: server |
| restart: unless-stopped |
| networks: [hg-net] |
| depends_on: |
| store: |
| condition: service_healthy |
| environment: |
| HG_SERVER_BACKEND: hstore |
| HG_SERVER_PD_PEERS: pd:8686 |
| ports: |
| - "8080:8080" |
| healthcheck: |
| test: ["CMD-SHELL", "curl -fsS http://localhost:8080/versions >/dev/null || exit 1"] |
| interval: 10s |
| timeout: 5s |
| retries: 30 |
| start_period: 60s |