diff --git a/environments/repository.yaml b/environments/repository.yaml deleted file mode 100644 index f6a4dbf8..00000000 --- a/environments/repository.yaml +++ /dev/null @@ -1,30 +0,0 @@ -version: "3.7" - -x-project-base: &project-base - env_file: - - .env - restart: always - networks: - - source-verify -networks: - source-verify: -# volumes: -# db: -# h5ai: -# driver: local - -services: - repository: - <<: *project-base - image: ghcr.io/hashgraph/hedera-sourcify:repository-${TAG} - container_name: repository-${TAG} - volumes: - - type: bind - source: $REPOSITORY_PATH_HOST - target: $REPOSITORY_PATH - read_only: true - - type: bind - source: ./docker-config.json - target: /redirects/config.json - ports: - - ${REPOSITORY_SERVER_EXTERNAL_PORT}:80 diff --git a/environments/server.yaml b/environments/server.yaml deleted file mode 100644 index ebce40f8..00000000 --- a/environments/server.yaml +++ /dev/null @@ -1,34 +0,0 @@ -version: "3.7" - -x-project-base: &project-base - env_file: - - .env - restart: always - networks: - - source-verify - -networks: - source-verify: - -services: - server: - <<: *project-base - image: ghcr.io/hashgraph/hedera-sourcify:server-${TAG} - container_name: server-${TAG} - ports: - - "${SERVER_EXTERNAL_PORT}:${SERVER_PORT}" - volumes: - - type: bind - source: $REPOSITORY_PATH_HOST - target: $REPOSITORY_PATH - - type: bind - source: $SOLC_REPO_HOST - target: $SOLC_REPO - - type: bind - source: $SOLJSON_REPO_HOST - target: $SOLJSON_REPO - healthcheck: - test: ["CMD", "curl", "-f", "http://localhost:${SERVER_PORT}/health"] - interval: 30s - timeout: 10s - retries: 10 diff --git a/environments/ui.yaml b/environments/ui.yaml deleted file mode 100644 index ab0aed7c..00000000 --- a/environments/ui.yaml +++ /dev/null @@ -1,28 +0,0 @@ -version: "3.7" - -networks: - source-verify: - -x-project-base: &project-base - env_file: - - .env - restart: always - networks: - - source-verify - -services: - ui: - <<: *project-base - image: ghcr.io/hashgraph/hedera-sourcify:ui-${TAG} - container_name: ui-${TAG} - healthcheck: - test: ["CMD", "curl", "-f", "http://localhost"] - interval: 30s - timeout: 10s - retries: 10 - volumes: - - type: bind - source: ./docker-config.json - target: /usr/share/nginx/html/config.json - ports: - - "${UI_EXTERNAL_PORT}:80"