-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #118 from bitfinity-network/update-CI
Add CI for publishing images to GCP
- Loading branch information
Showing
3 changed files
with
54 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,24 @@ | ||
version: "3.3" | ||
version: '3.3' | ||
|
||
# | ||
# This docker-compose file is used to start the services for local testing. | ||
# It starts a evm-blockchain-extractor connected to a local postgres database. | ||
# | ||
|
||
services: | ||
|
||
db: | ||
image: "postgres:11-alpine" | ||
image: 'postgres:11-alpine' | ||
ports: | ||
- "5432:5432" | ||
- '5432:5432' | ||
environment: | ||
POSTGRES_PASSWORD: postgres | ||
POSTGRES_USER: postgres | ||
|
||
|
||
extractor: | ||
image: ghcr.io/bitfinity-network/evm-block-extractor:main | ||
# image: "evm-block-extractor:latest" | ||
# build: | ||
# dockerfile: ./src/evm-block-extractor/Dockerfile | ||
# image: ghcr.io/bitfinity-network/evm-block-extractor:main | ||
image: "evm-block-extractor:latest" | ||
build: | ||
dockerfile: ./src/evm-block-extractor/Dockerfile | ||
ports: | ||
- "8080:8080" | ||
- '8080:8080' | ||
command: --rpc-url https://testnet.bitfinity.network --postgres --username postgres --password postgres --database-name postgres --database-url db |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters