-
Notifications
You must be signed in to change notification settings - Fork 93
Open
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
Metadata
Metadata
Assignees
Labels
No labels