mirror of
https://github.com/grassrootseconomics/eth-tracker.git
synced 2025-02-23 00:02:00 +01:00
fix: remove required redis configs
This commit is contained in:
parent
7a64f29dc7
commit
c93cc8270f
@ -79,15 +79,18 @@ func main() {
|
|||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
|
|
||||||
cache, err := cache.New(cache.CacheOpts{
|
cacheOpts := cache.CacheOpts{
|
||||||
Chain: chain,
|
Chain: chain,
|
||||||
Registries: ko.Strings("bootstrap.ge_registries"),
|
Registries: ko.Strings("bootstrap.ge_registries"),
|
||||||
Watchlist: ko.Strings("bootstrap.watchlist"),
|
Watchlist: ko.Strings("bootstrap.watchlist"),
|
||||||
Blacklist: ko.Strings("bootstrap.blacklist"),
|
Blacklist: ko.Strings("bootstrap.blacklist"),
|
||||||
CacheType: ko.MustString("core.cache_type"),
|
CacheType: ko.MustString("core.cache_type"),
|
||||||
RedisDSN: ko.MustString("redis.dsn"),
|
|
||||||
Logg: lo,
|
Logg: lo,
|
||||||
})
|
}
|
||||||
|
if ko.MustString("core.cache_type") == "redis" {
|
||||||
|
cacheOpts.RedisDSN = ko.MustString("redis.dsn")
|
||||||
|
}
|
||||||
|
cache, err := cache.New(cacheOpts)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
lo.Error("could not initialize cache", "error", err)
|
lo.Error("could not initialize cache", "error", err)
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
|
@ -1,17 +1,4 @@
|
|||||||
services:
|
services:
|
||||||
redis:
|
|
||||||
image: redis:7-alpine
|
|
||||||
restart: unless-stopped
|
|
||||||
command: redis-server --save 60 1 --loglevel warning
|
|
||||||
volumes:
|
|
||||||
- tracker-redis:/data
|
|
||||||
ports:
|
|
||||||
- "127.0.0.1:6379:6379"
|
|
||||||
healthcheck:
|
|
||||||
test: ["CMD-SHELL", "redis-cli ping | grep PONG"]
|
|
||||||
interval: 10s
|
|
||||||
timeout: 5s
|
|
||||||
retries: 5
|
|
||||||
nats:
|
nats:
|
||||||
image: nats:2
|
image: nats:2
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
Loading…
Reference in New Issue
Block a user