Problem Definition
atlassian/bamboo-agent-base by default start the remote agent with the System Encoding ANSI_X3.4-1968
Suggested Solution
Since remote agent works better with UTF-8, atlassian/bamboo-agent-base should start remote agent with System Encoding UTF-8 by default
Workaround
Build a new image with the following Dockerfile to change the locale:
FROM atlassian/bamboo-agent-base ENV LANG C.UTF-8 ENV LC_ALL C.UTF-8
[BAM-20554] Set Remote agent Docker image to use UTF-8
Workflow | Original: JAC Suggestion Workflow [ 3323422 ] | New: JAC Suggestion Workflow 3 [ 3611429 ] |
Status | Original: RESOLVED [ 5 ] | New: Closed [ 6 ] |
Fix Version/s | New: 6.10.2 [ 89592 ] | |
Fix Version/s | Original: 6.10.0 [ 86205 ] |
Fix Version/s | New: 6.10.0 [ 86205 ] | |
Resolution | New: Fixed [ 1 ] | |
Status | Original: Gathering Interest [ 11772 ] | New: Resolved [ 5 ] |
Assignee | New: Alexey Chystoprudov [ achystoprudov ] |
Description |
Original:
h3. Problem Definition
atlassian/bamboo-agent-base by default start the remote agent with the System Encoding ANSI_X3.4-1968 h3. Suggested Solution Since remote agent works better with UTF-8, atlassian/bamboo-agent-base should start remote agent with System Encoding UTF-8 by default h3. Workaround Edit the image with the following command to change the locale: {noformat} export LC_ALL=C.UTF-8 {noformat} |
New:
h3. Problem Definition
atlassian/bamboo-agent-base by default start the remote agent with the System Encoding ANSI_X3.4-1968 h3. Suggested Solution Since remote agent works better with UTF-8, atlassian/bamboo-agent-base should start remote agent with System Encoding UTF-8 by default h3. Workaround Build a new image with the following Dockerfile to change the locale: {noformat} FROM atlassian/bamboo-agent-base ENV LANG C.UTF-8 ENV LC_ALL C.UTF-8 {noformat} |