我已经看过这个主题:https://stackoverflow.com/a/26599273/2323245
但我有以下问题:
postgres_1 | FATAL: role "docker" does not exist
app_1 | Error: Could not establish a connection with the database
这是我的docker-compose.yml文件
version: "2"
services:
app:
build:
context: .
dockerfile: Dockerfiles/app.dockerfile
links:
- postgres
depends_on:
- postgres
ports:
- "8080:8080"
environment:
PORT: 8080
networks:
- neo_dev
restart: always
postgres:
build:
context: .
dockerfile: Dockerfiles/postgres.dockerfile
networks:
- neo_dev
volumes:
- postgresql:/var/lib/postgresql
# This needs explicit mapping due to https://github.com/docker-library/postgres/blob/4e48e3228a30763913ece952c611e5e9b95c8759/Dockerfile.template#L52
- postgresql_data:/var/lib/postgresql/data
ports:
- "5430:5432" #in case you already have postgres running in your host machine
networks:
neo_dev:
driver: bridge
volumes:
postgresql:
postgresql_data:
我的postgres.dockerfile是
FROM library/postgres
MAINTAINER Samir Bouaked "sbouaked@neocasesoftware.com"
ADD Dockerfiles/init.sql /docker-entrypoint-initdb.d/
这是我的init.sql文件
CREATE USER docker with password 'docker';
CREATE DATABASE docker;
GRANT ALL PRIVILEGES ON DATABASE docker TO docker;
在我的golang应用程序中,我正在尝试使用
访问数据库router.GET("/db", func(c *gin.Context) {
db, err := sql.Open("postgres", "host=postgres port=5432 user=docker dbname=docker password=docker sslmode=disable")
if err != nil {
log.Fatal("Error: The data source arguments are not valid - " + err.Error())
}
err = db.Ping()
if err != nil {
log.Println("Error: Could not establish a connection with the database")
c.String(http.StatusOK, "hotstName : %s\nDbStatus : %s", os.Getenv("HOSTNAME"), err)
} else {
c.String(http.StatusOK, "\nhotstName : %s\nDbStatus : connection ok !\n", os.Getenv("HOSTNAME"))
}
defer db.Close()
})
我尝试了不同的解决方案,比如直接在dockerfile env变量中传递
ENV POSTGRES_USER docker
ENV POSTGRES_PASSWORD docker
ENV POSTGRES_DB docker
但总是有相同的结果...... 有关详情,请查看此回购https://github.com/neocase/docker-go-starter-kit
我不明白这个问题
答案 0 :(得分:3)
这是码头工作量的问题。
我必须docker volume rm postgresvolume
并再次执行docker-compose up --build
这不是环境变量的问题,但是juste这个事实是init.sql是现金而不是在开始时运行。由于某些测试,我开始了项目
答案 1 :(得分:1)
如果要通过使用docker-compose传递ENV变量来创建数据库,可以指定类似
的内容 postgres:
container_name: postgres
image: library/postgres
ports:
- "5432:5432"
environment:
- POSTGRES_DATABASE=docker
- POSTGRES_USER=docker
- POSTGRES_PASSWORD=docker
- POSTGRES_ADMIN_PASSWORD=docker
在你的撰写YML文件中。 这应该创建一个带有用户/ pwd docker的DB docker的postgres容器,不再需要你自己的dockerfile(所以你可以使用任何支持这种行为的postgres图像)
运行撰写后(如果它没有按预期工作),如果你的postgres容器正在运行,或者你的应用程序出现问题,你应该查看日志。