Docker部署热门实时新闻newsnow
mkdir /opt/newsnow && cd /opt/newsnow
nano docker-compose.yaml
services:
newsnow:
image: ghcr.io/ourongxing/newsnow:latest
container_name: newsnow
restart: always
ports:
- '4445:4444'
environment:
- G_CLIENT_ID= #Github ID
- G_CLIENT_SECRET= #Github SECRET
- JWT_SECRET= #可以同上,这三个都可以不填,除非你需要登录
- INIT_TABLE=true
- ENABLE_CACHE=true
docker compose up -d