Open adepretis opened 4 years ago
Same issue on Windows image
It seems the directory (C:\TeamCity\bin\..\temp) is not writable. TeamCity requires it to be writable. C:\TeamCity\bin\..\temp\testfile.txt (Access is denied)
Same issue on Windows image
It seems the directory (C:\TeamCity\bin\..\temp) is not writable. TeamCity requires it to be writable. C:\TeamCity\bin\..\temp\testfile.txt (Access is denied)
Having the same problem, any updated on a fix?
Same issue on Windows image
It seems the directory (C:\TeamCity\bin\..\temp) is not writable. TeamCity requires it to be writable. C:\TeamCity\bin\..\temp\testfile.txt (Access is denied)
Having the same problem, any updated on a fix?
Running the container with this fixed my problem; -v C:\TeamCity\temp:C:\TeamCity\temp
Documentation does not mention it, I think it should.
When running TC within Kubernetes with
securityContext
andfsGroup: 1000
andrunAsUser: 1000
(the UID/GID of the image'stcuser
there is a problem with/opt/teamcity/temp
:This problem has been introduced with https://github.com/JetBrains/teamcity-docker-server/commit/c00ea88f17798eda3ce249f39b8ec5562b1a6df2 and should be fixed with a simple
chown tcuser:tcuser
on/opt/teamcity/temp
.