Quantcast
Channel: TeamCity : Powerful CI/CD for DevOps-centric teams | The JetBrains Blog
Viewing all articles
Browse latest Browse all 916

Comment on TeamCity 2017.2 is released! by Sergey Limonov

$
0
0

This one https://hub.docker.com/r/jetbrains/teamcity-server/ was last pushed 23 days ago when I read this blog (Dec 18, 2017). Now I see it was last pushed 3 days ago. I have following docker-compose.yml file.
version: ‘2’

services:
db:
image: postgres:latest
container_name: jetbrains-teamcity-db
restart: always
# ports:
# – 5432:5432
environment:
POSTGRES_PASSWORD: dbhnefkbpfwbz
volumes:
– ./db:/var/lib/postgresql/data:Z
– ./conf/init-user-db.sh:/docker-entrypoint-initdb.d/init-user-db.sh:ro

teamcity:
image: jetbrains/teamcity-server:latest
container_name: jetbrains-teamcity
restart: always
ports:
– 8111:8111
volumes:
– ./data:/data/teamcity_server/datadir
– ./logs:/opt/teamcity/logs
links:
– db
environment:
TEAMCITY_SERVER_MEM_OPTS: -Xmx1024m
But when I use “docker-compose up” command I see that it was not updated to 2017.2 version.

[2017-12-23 12:30:59,895] INFO – jetbrains.buildServer.STARTUP – Starting TeamCity server
[2017-12-23 12:31:00,856] INFO – jetbrains.buildServer.STARTUP – TeamCity version: 2017.1.5 (build 47175), data format version 812
[2017-12-23 12:31:00,863] INFO – jetbrains.buildServer.STARTUP – OS: Linux, version 3.10.0-693.5.2.el7.x86_64, amd64, Current user: root, Time zone: UTC

May be I’m doing something wrong?


Viewing all articles
Browse latest Browse all 916

Trending Articles