在Docker容器上安装go-migrate是一个常见的需求,它可以帮助我们在应用程序中进行数据库迁移。安装go-migrate并在Docker容器中使用它,可以使我们的开发环境更加便捷和灵活。在本文中,我将为您介绍在Docker容器上安装go-migrate的步骤和注意事项。无论您是新手还是有经验的开发者,本文都将为您提供详细的指导,让您轻松掌握这一技能。让我们一起来看看如何在Docker容器上安装go-migrate吧!
我正在研究容器和 docker,并且尝试使用 go-migrate 运行容器,但收到此错误:
dockerfile:33 -------------------- 32 | 33 | >>> run curl -s https://packagecloud.io/install/repositories/golang-migrate/migrate/script.deb.sh | bash && \ 34 | >>> apt-get update && \ 35 | >>> apt-get install migrate 36 | -------------------- error: failed to solve: process "/bin/sh -c curl -s https://packagecloud.io/install/repositories/golang-migrate/migrate/script.deb.sh | bash && apt-get update && apt-get install migrate" did not complete successfully: exit code: 100
我使用的是 m1 macbook,dockerfile 是:
FROM golang:1.20.3 RUN curl -s https://packagecloud.io/install/repositories/golang-migrate/migrate/script.deb.sh | bash && \ apt-get update && \ apt-get install migrate
还有一个去安装 安装 migrate 的选项。由于您使用的是 go 镜像,因此这样安装会更容易 例如
FROM FROM golang:1.20.3 RUN go install -tags 'mysql' github.com/golang-migrate/migrate/v4/cmd/migrate@latest
以上是如何在 Docker 的容器上安装 go-migrate?的详细内容。更多信息请关注PHP中文网其他相关文章!