Skip to content

Commit

Permalink
docs: Add notes about docker deployments in Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
morgsmccauley committed Dec 12, 2022
1 parent 758c271 commit 5e79896
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,3 +149,11 @@ GRANT readonly TO explorer;
```bash
$ PGPASSWORD="password" psql -h 127.0.0.1 -U explorer databasename
```
## Deployments
Both `indexer-explorer` and `circulating-supply` binaries are run within Docker, their `Dockerfile`s can be found within their respective directoires/workspaces. Docker images are built using Google Cloud Build and then deployed to Google Cloud Run. The following commands can be used to build the Docker images:
```bash
$ docker build -f ./indexer/Dockerfile .
$ docker build -f ./circulating-supply/Dockerfile .
```

0 comments on commit 5e79896

Please sign in to comment.