deso-protocol / deso-protocol/run

Node stopped synchronizing after usage of the new docker image

Open
#74 20 comments 0 reactions 0 assignees View on GitHub
Dominant language
Makefile
Stars
189
Forks
90
PR merge metrics
No merged PRs in 30d

Description

Hi @maebeam, I'm back with server stopped synchronisation.

After yesterday updated of the docker image to "19c446547510f1e0b83d56611e732e3fa6a0b32d" server stopped syncing, I can see last post 12h ago. It has also started ignoring super_admins, at the moment I can see only new post but not server stats ( I was able to for some time yesterday).

Docker compose file:

```
version: "3.7"
services:
backend:
container_name: backend
image: docker.io/bitclout/backend:19c446547510f1e0b83d56611e732e3fa6a0b32d
command: run
volumes:
- db:/db
- ./:/bitclout/run
ports:
- 17001:17001
- 17000:17000
env_file:
- dev.env
expose:
- "17001"
- "17000"
frontend:
container_name: frontend
image: docker.io/bitclout/frontend:23d22a586e70b2f6700f01ab4feabe98e53ea991
ports:
- 8080:8080
volumes:
- ./:/app
env_file:
- dev.env
expose:
- "8080"
nginx:
container_name: nginx
image: nginx:latest
command: "/bin/sh -c 'while :; do sleep 6h & wait $${!}; nginx -s reload; done & nginx -g \"daemon off;\"'"
volumes:
- ./nginx.dev:/etc/nginx/nginx.conf
- ./data/certbot/conf:/etc/letsencrypt
- ./data/certbot/www:/var/www/certbot
depends_on:
- backend
- frontend
ports:
- 80:80
- 443:443
certbot:
image: certbot/certbot
entrypoint: "/bin/sh -c 'trap exit TERM; while :; do certbot renew; sleep 12h & wait $${!}; done;'"
volumes:
- ./data/certbot/conf:/etc/letsencrypt
- ./data/certbot/www:/var/www/certbot
volumes:
db:

```

Full logs attached.
[full.log](https://github.com/bitclout/run/files/6906748/full.log)

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.