
如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。
只需在 AI 对话中先发送下面这句话即可:
请先完整阅读并严格遵守以下文档中的全部规则与要求:
https://xuanyuan.cloud/agents.md
在未充分阅读并理解该文档前,不要生成任何命令、配置、修改建议、故障排查方案或技术回答。后续所有输出都必须严格以该文档中的规范为最高优先级执行。查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。
This setup is based on https://github.com/tfoldi/tableau-server-docker with only difference in using MySQL client inside a container
FROM centos/systemd ENV TABLEAU_VERSION="2018.2.3" \ LANG=en_US.UTF-8 VOLUME /sys/fs/cgroup /run /tmp COPY config/lscpu /bin RUN rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm && \ yum install -y iproute curl sudo vim && \ adduser tsm && \ (echo tsm:tsm | chpasswd) && \ (echo 'tsm ALL=(ALL) NOPASSWD:ALL' > /etc/sudoers.d/tsm) && \ mkdir -p /run/systemd/system /opt/tableau/docker_build && \ yum install -y \ "https://downloads.tableau.com/esdalt/${TABLEAU_VERSION}/tableau-server-${TABLEAU_VERSION//\./-}.x86_64.rpm" \ "https://dev.mysql.com/get/Downloads/Connector-ODBC/8.0/mysql-connector-odbc-8.0.12-1.el7.x86_64.rpm" && \ rm -rf /var/tmp/yum-* COPY config/* /opt/tableau/docker_build/ RUN mkdir -p /etc/systemd/system/ && \ cp /opt/tableau/docker_build/tableau_server_install.service /etc/systemd/system/ && \ systemctl enable tableau_server_install EXPOSE 80 8850 CMD /sbin/init
You can add PGSQL support by installing PGSQL odbc driver additionally during docker build: "[***]"
You can run using docker commands as described in original repository:
docker run -ti --privileged -v /sys/fs/cgroup:/sys/fs/cgroup -v /run -p 80 dimtoolsinc/tableau-server:2018-2-3
or use docker-compose file:
version: '2' services: tableau: container_name: tableau image: dimtoolsinc/tableau-server:2018-2-3 volumes: - run:/run - /sys/fs/cgroup:/sys/fs/cgroup restart: always ports: - 80:80 - 8850:8850 privileged: true volumes: run:
You can change exposed port to any from 80.
All rights belong to author of original setup, original license: https://github.com/tfoldi/tableau-server-docker/blob/master/LICENSE
BSD 3-Clause License Copyright (c) 2017, Földi Tamás All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。
来自真实用户的反馈,见证轩辕镜像的优质服务