
smartforge/goplannertime_appGOPlannerTime平台应用镜像是用于部署和运行GOPlannerTime平台核心服务的官方Docker镜像,旨在简化平台部署流程,确保跨环境运行的一致性和稳定性。该镜像包含平台运行所需的全部依赖组件,可直接用于开发、测试及生产环境的快速部署。
通过以下命令可快速启动GOPlannerTime平台服务容器:
dockerdocker run -d --name goplannertime-app -p 8080:8080 goplannertime/app:latest
参数说明:
-d:后台运行容器--name goplannertime-app:指定容器名称-p 8080:8080:端口映射(主机端口:容器端口),具体端口需根据平台实际服务端口调整goplannertime/app:latest:镜像名称及标签(建议指定具体版本标签而非latest以确保稳定性)该镜像支持通过环境变量进行基础配置(具体环境变量需参考GOPlannerTime平台官方文档),示例:
dockerdocker run -d --name goplannertime-app \ -p 8080:8080 \ -e DATABASE_URL="mysql://user:password@db-host:3306/goplannertime" \ -e LOG_LEVEL="info" \ goplannertime/app:latest
使用docker-compose.yml文件管理服务部署:
yamlversion: '3.8' services: goplannertime-app: image: goplannertime/app:latest container_name: goplannertime-app ports: - "8080:8080" environment: - DATABASE_URL="mysql://user:password@db:3306/goplannertime" - LOG_LEVEL="info" restart: unless-stopped depends_on: - db db: image: mysql:8.0 # 数据库配置(根据实际需求添加,如 volumes、environment 等)
-v参数挂载主机目录至容器内对应路径。v1.0.0)而非latest,以确保部署版本的可追溯性和稳定性。



探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式
通过 Docker 登录认证访问私有仓库
无需登录使用专属域名
Kubernetes 集群配置 Containerd
K3s 轻量级 Kubernetes 镜像加速
VS Code Dev Containers 配置
Podman 容器引擎配置
HPC 科学计算容器配置
ghcr、Quay、nvcr 等镜像仓库
Harbor Proxy Repository 对接专属域名
Portainer Registries 加速拉取
Nexus3 Docker Proxy 内网缓存
需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单
manifest unknown
no matching manifest(架构)
invalid tar header(解压)
TLS 证书失败
DNS 超时
410 Gone 排查
402 与流量用尽
401 认证失败
429 限流
D-Bus 凭证提示
413 与超大单层
来自真实用户的反馈,见证轩辕镜像的优质服务