BibSpace is an Online Bibtex Publications Management Software for Authors and Research Groups.
- See INSTALL.md
To run BibSpace tests (inside Docker), run the following commands.
docker-compose build
docker-compose -f docker-compose.yml -f docker-compose.test.yml up
To run BibSpace in production mode, run the following commands:
docker-compose build
docker-compose -f docker-compose.yml up -d
That's it! Point you browser to http://localhost:8083/ to open BibSpace.
You may stop the container with
docker-compose down
The MySQL data is stored in db_data
, whereas preferences and stats in json_data
.
- Make backup
- Replace code with the code from a newer version:
git clone --branch <version> https://github.com/vikin91/BibSpace.git
Whereas <version>
equals the name of a branch or release tag, for example: v0.5.4
.
- (Optional) Restore backup if any data got lost.
- Make backup
- Stop Docker containers
docker-compose down
- Download
docker-compose.yml
file from Github - Change the image version of BibSpace in
docker-compose.yml
Locate the following part and remove thebuild
part.
bibspace:
build:
context: .
dockerfile: Dockerfile
depends_on:
- db
And add the image
definition with respective version.
For version 0.6.0
this will look as follows:
bibspace:
image: bibspace:0.6.0
depends_on:
- db
- Run with
docker-compose up -d
- (Optional) Restore backup if any data got lost.
- Important: Update to version
0.5.3
or0.5.4
first to enable JSON backups. - Backup your data to the JSON format and make sure that data can be restored correctly.
- Replace code with version
0.6.0
and restore data from the JSON backup.