Docker 部署 astrometry.net 星图匹配
整体思路 安装 Docker 和 Docker Compose 下载星表 启动 Docker 容器 通过命令调用 Docker 运行 最终效果 1 2 3 4 5 6 7 8 9 10 11 # 进入目录: cd /opt/astrometry # 运行解算 docker compose run --rm solver-heavy \ --config /etc/astrometry.cfg \ --dir /output/heavy \ --overwrite \ /input/test.fits # 等待得到结果 详细部署过程 1. 安装 Docker Ubuntu 服务器上使用的安装文档: https://docs.docker.com/engine/install/ubuntu/ ...