开始使用docker我尝试使用数据库容器的持久容器存储。我认为创建postgres-TeamCity实例是一项简单的任务。但是在osx上运行kitematic& docker-machine在引用本地文件系统时有一些关于权限的问题。使用持久容器似乎可以解决这个问题。
尝试使用以下内容运行docker-compose up -d
:
teamcitydb:
image: postgres:9.3
ports:
- "5432:5432"
environment:
- POSTGRES_USER=teamcity
- POSTGRES_PASSWORD=mysecretpassword
volumes_from:
- pgdata
pgdata:
image: cogniteev/echo
command: echo 'Data Container for PostgreSQL'
volumes:
- /var/lib/postgresql/data
似乎有效,但是如何创建这里提到的数据库架构? https://hub.docker.com/r/sjoerdmulder/teamcity/如果我手动执行:
SETUP_TEAMCITY_SQL="create role teamcity with login password 'teamcity';create database teamcity owner teamcity;"
POSTGRES_PASSWORD=mysecretpassword
docker run -it --link teamcity_teamcitydb_1:postgres --rm -e "SETUP_TEAMCITY_SQL=$SETUP_TEAMCITY_SQL" -e "PGPASSWORD=$POSTGRES_PASSWORD" postgres bash -c 'exec echo $SETUP_TEAMCITY_SQL |psql -h "$POSTGRES_PORT_5432_TCP_ADDR" -p "$POSTGRES_PORT_5432_TCP_PORT" -U teamcity'
我只收到表/关系已存在的错误。 有什么问题?是否有可能包括"包括"在ymal文件中的这个陈述?
Teamcity连接到数据库,如下所示
teamcity:
image: sjoerdmulder/teamcity
ports:
- "8111:8111"
links:
- teamcitydb
environment:
- TEAMCITY_DATA_PATH=/var/lib/teamcity
- DB_HOSTNAME=db
- DB_DATABASE=teamcitydb
- DB_USERNAME=teamcitydb
- DB_PASSWORD=teamcitydb
volumes:
- ./volumes/teamcity:/var/lib/teamcity
然而,当我尝试在网络界面连接时假设默认路径,虽然链接似乎没有连接(见上文)。
Could not connect to PostgreSQL server.
connection refused. check that the hostname and port are correct and that the postmaster is accepting tcp/ip connections.
SQL exception: Connection refused. Check that the hostname and port are correct and that the postmaster is accepting TCP/IP connections.
答案 0 :(得分:0)
@ 1:https://github.com/docker-library/docs/tree/master/postgres指定如何扩展图片 - >自定义dockerfile,它添加了一些initialization.sql
@ 2:在这里使用docker-machine ip
示例docker-compose.yml here:https://github.com/dataplayground/tc/blob/master/docker-compose.yml