简体   繁体   中英

Unable to start TeamCity Build agent on Docker

I'm trying to create a TeamCity build agent on docker. i pulled the official image and tried to start it with default configurations with below command

docker run -d --name teamcity-agent -e SERVER_URL="http://teamcity-server-instance:80" -v /opt/docker/teamCity/teamcity_agent/conf:/data/teamcity_agent/conf jetbrains/teamcity-agent

but it exits with code 1 every time i run it and below are the logs for that在此处输入图像描述

can anyone suggest a solution to this

Thank you in advance

Did you try changing the mod? sudo chmod 666 /opt/docker . This gives the File owner, The group members, and others read + write permission over that directory.

you can check the permissions you have via: ls -la /opt

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM