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
Hey, I figured you were preparing 1.6.2, so I thought I'd help a bit.
I haven't reproduced the bug, I just read the Dockerfile
Describe the bug In Dockerfile the mysql host is mysql, but in docker-compose.yml it is mariadb_10_4
mysql
mariadb_10_4
When I look at the Dockerfile, I see this:
ENV IP_SOURCE="https://github.com/InvoicePlane/InvoicePlane/releases/download" \ IP_VERSION="v1.6.2" \ MYSQL_HOST="mysql" \ ....
But in the docker-compose.yml file you perfectly start mariadb with service name mariadb_10_4 (something like that). That doesn't match
To Reproduce Steps to reproduce the behavior:
docker-compose up -d
mariadb
MYSQL_HOST
ipconfig.php
Expected behavior While running /setup I would expect the mysql host to be mariadb_10_4
/setup
Additional context In Docker questions for InvoicePlane the most related question in general is about the name of the database host.
The text was updated successfully, but these errors were encountered:
Morning 👋🏼
I have made the Dockerfile match the compose file, that should now work. Thanks for flagging
Sorry, something went wrong.
mhzawadi
No branches or pull requests
Hey,
I figured you were preparing 1.6.2, so I thought I'd help a bit.
I haven't reproduced the bug, I just read the Dockerfile
Describe the bug
In Dockerfile the mysql host is
mysql
, but in docker-compose.yml it ismariadb_10_4
When I look at the Dockerfile, I see this:
But in the docker-compose.yml file you perfectly start mariadb with service name mariadb_10_4 (something like that).
That doesn't match
To Reproduce
Steps to reproduce the behavior:
docker-compose up -d
mariadb
as a serviceMYSQL_HOST
is used as a variable inipconfig.php
, so if it saysmysql
there, then that ENV` variable is wrong.Expected behavior
While running
/setup
I would expect the mysql host to bemariadb_10_4
Additional context
In Docker questions for InvoicePlane the most related question in general is about the name of the database host.
The text was updated successfully, but these errors were encountered: