gpt4 book ai didi

docker - 我们如何在 Cassandra Dockerfile 中运行 flyway/migrations 脚本?

转载 作者:行者123 更新时间:2023-12-05 03:37:25 31 4
gpt4 key购买 nike

我的docker文件

FROM cassandra:4.0
MAINTAINER me

EXPOSE 9042

我想在获取 cassandra 图像并在容器内创建 super 用户时运行类似的东西。

create keyspace IF NOT EXISTS XYZ WITH REPLICATION = { 'class' : 'SimpleStrategy', 'replication_factor' : 1 };

我也试过添加一个 shell 脚本,但它从来没有连接到 cassandra,我修改过的 docker 文件是

FROM cassandra:4.0
MAINTAINER me

ADD entrypoint.sh /usr/local/bin/entrypoint.sh
RUN chmod 755 /usr/local/bin/entrypoint.sh
RUN mkdir scripts
COPY alter.cql scripts/
RUN chmod 755 scripts/alter.cql

EXPOSE 9042
CMD ["entrypoint.sh"]

我的入口点是这样的

#!/bin/bash

export CQLVERSION=${CQLVERSION:-"4.0"}
export CQLSH_HOST=${CQLSH_HOST:-"localhost"}
export CQLSH_PORT=${CQLSH_PORT:-"9042"}

cqlsh=( cqlsh --cqlversion ${CQLVERSION} )

# test connection to cassandra
echo "Checking connection to cassandra..."
for i in {1..30}; do
if "${cqlsh[@]}" -e "show host;" 2> /dev/null; then
break
fi
echo "Can't establish connection, will retry again in $i seconds"
sleep $i
done

if [ "$i" = 30 ]; then
echo >&2 "Failed to connect to cassandra at ${CQLSH_HOST}:${CQLSH_PORT}"
exit 1
fi

# iterate over the cql files in /scripts folder and execute each one
for file in /scripts/*.cql; do
[ -e "$file" ] || continue
echo "Executing $file..."
"${cqlsh[@]}" -f "$file"
done

echo "Done."

exit 0

这永远不会连接到我的 Cassandra 任何想法请帮助。谢谢。

最佳答案

您的问题是您没有调用原始入口点来启动 Cassandra - 您用自己的代码覆盖了它,但它只是运行 cqlsh,而没有启动 Cassandra。

您需要修改代码以使用安装为 /usr/local/bin/docker-entrypoint.sh 的原始入口点脚本 (source) 启动 Cassandra,然后执行您的代码脚本,然后等待终止信号(您不能直接退出脚本,因为它会终止图像。

关于docker - 我们如何在 Cassandra Dockerfile 中运行 flyway/migrations 脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69331669/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com