Skip to content

Commit

Permalink
fix: build process and docker compose
Browse files Browse the repository at this point in the history
  • Loading branch information
Zygimantass committed Jan 29, 2023
1 parent 85a0fcb commit f0529e5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
upgrades.db
config.yaml
2 changes: 1 addition & 1 deletion config.yaml.example
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ chains:
evmos_9001-2:
endpoint: https://evmos-api.polkachu.com

db_path: "/opt/upgrades.db"
db_path: "/opt/data/upgrades.db"
slack:
webhook: "<slack webhook url here>"
7 changes: 5 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
version: "3.9"
services:
watcher:
build: .
image: ghcr.io/skip-mev/governor:latest
ports:
- "8000:8000"
volumes:
- "./upgrades.db:/opt/upgrades.db"
- "data:/opt/data/"
- "./config.yaml:/opt/config.yaml"

volumes:
data:

0 comments on commit f0529e5

Please sign in to comment.