Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* ✨ [Command Reference](docs/commands.md)
* 📈 [Project Stats Snapshots](docs/stats.md)

> A Go Fiber API with monitoring and multi-database support, as a drop-in replacement for the ExpressJS API with MariaDB in this project, is available at [jam-build-propsdb](https://github.com/localnerve/jam-build-propsdb).
> A Go Fiber API with monitoring and multi-database support, as a drop-in replacement for the backend in this project, is available at [jam-build-propsdb](https://github.com/localnerve/jam-build-propsdb).

## Project Summary

Expand Down
6 changes: 3 additions & 3 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ services:

# The database
mariadb:
image: mariadb:12.1.2
image: mariadb:12.2.2
environment:
MARIADB_ROOT_PASSWORD: ${DB_ROOT_PASSWORD}
MARIADB_AUTO_UPGRADE: 1
Expand All @@ -114,7 +114,7 @@ services:

# The database backup command
backup:
image: mariadb:12.1.2
image: mariadb:12.2.2
environment:
DB_ROOT_PASSWORD: ${DB_ROOT_PASSWORD}
depends_on:
Expand Down Expand Up @@ -142,7 +142,7 @@ services:

# The database hydration command: Restore from dump in the backup volume
restore:
image: mariadb:12.1.2
image: mariadb:12.2.2
environment:
DB_ROOT_PASSWORD: ${DB_ROOT_PASSWORD}
BACKUP_FILE: ${BACKUP_FILE}
Expand Down
Loading