You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is caused by there being no PWD environment variable in windows. This is used in the docker-compose.yml file. As init_pacs_dbs.sh cannot be found, it is created as an empty directory in docker-entrypoint-initdb.d in the container.
Replace
- '${PWD}/init_pacs_dbs.sh:/docker-entrypoint-initdb.d/init_pacs_dbs.sh'
in the bahmni-standard\docker-compose.yml file with
- './init_pacs_dbs.sh:/docker-entrypoint-initdb.d/init_pacs_dbs.sh'
There may be partial initialisation of the database which will mean the volume bahmni-standard_pacsdbdata will need to be deleted and recreated.
The text was updated successfully, but these errors were encountered:
This is caused by there being no PWD environment variable in windows. This is used in the docker-compose.yml file. As init_pacs_dbs.sh cannot be found, it is created as an empty directory in docker-entrypoint-initdb.d in the container.
Replace
- '${PWD}/init_pacs_dbs.sh:/docker-entrypoint-initdb.d/init_pacs_dbs.sh'
in the bahmni-standard\docker-compose.yml file with
- './init_pacs_dbs.sh:/docker-entrypoint-initdb.d/init_pacs_dbs.sh'
There may be partial initialisation of the database which will mean the volume bahmni-standard_pacsdbdata will need to be deleted and recreated.
The text was updated successfully, but these errors were encountered: