
remote-office-server是remote-office应用的后端服务器组件,采用Go语言开发,基于Postgres数据库构建,为远程办公应用提供核心后端服务支持,包括请求处理、数据存储与管理等功能。
适用于企业或团队部署remote-office远程办公应用时,作为后端服务组件运行,支撑整个远程办公平台的业务逻辑处理和数据管理。
通过以下命令启动容器,需提前配置Postgres数据库连接信息:
bashdocker run -d \ -p 8080:8080 \ -e DB_HOST=postgres-host \ -e DB_PORT=5432 \ -e DB_USER=username \ -e DB_PASSWORD=password \ -e DB_NAME=remote_office \ --name remote-office-server \ remote-office-server
| 环境变量 | 描述 | 默认值 |
|---|---|---|
| DB_HOST | Postgres数据库主机地址 | localhost |
| DB_PORT | Postgres数据库端口 | 5432 |
| DB_USER | Postgres数据库用户名 | postgres |
| DB_PASSWORD | Postgres数据库密码 | 无 |
| DB_NAME | 应用使用的数据库名称 | remote_office |
| SERVER_PORT | 服务器监听端口 | 8080 |
yamlversion: '3' services: remote-office-server: image: remote-office-server ports: - "8080:8080" environment: - DB_HOST=postgres - DB_PORT=5432 - DB_USER=postgres - DB_PASSWORD=secretpassword - DB_NAME=remote_office depends_on: - postgres restart: unless-stopped postgres: image: postgres:14 environment: - POSTGRES_USER=postgres - POSTGRES_PASSWORD=secretpassword - POSTGRES_DB=remote_office volumes: - postgres-data:/var/lib/postgresql/data volumes: postgres-data:
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。


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