We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following error is present when trying to connect to the firebird database container started from the sample README using an external tool.
Cannot transliterate character between character sets Invalid or incomplete multibyte or wide character
It is due to the system locale mismatches.
Perhaps it would be good to default to UTF8 in the Docker files:
ENV LANG=C.UTF-8 ENV LC_ALL=C.UTF-8
In any case I had to pass these ENV variables to the docker run command when starting the container.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following error is present when trying to connect to the firebird database container started from the sample README using an external tool.
Cannot transliterate character between character sets
Invalid or incomplete multibyte or wide character
It is due to the system locale mismatches.
Perhaps it would be good to default to UTF8 in the Docker files:
ENV LANG=C.UTF-8
ENV LC_ALL=C.UTF-8
In any case I had to pass these ENV variables to the docker run command when starting the container.
The text was updated successfully, but these errors were encountered: