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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# PowerSync Self Hosted Example

## 2024-11-27

- Updated `journeyapps/powersync-service:latest` image specifier which will target `>v.1.0.0` of the Docker image. This version of the Docker image contains support for MongoDB (alpha), MySQL (alpha) and the new modular architecture.

## v0.6.1

- Updated `powersync/web` to version `1.11.0` in NodeJS demo app.
Expand Down
2 changes: 0 additions & 2 deletions demos/nodejs-mongodb/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,5 @@ services:
depends_on:
mongo-rs-init:
condition: service_completed_successfully
# MongoDB support is available via this image version
image: journeyapps/powersync-service:0.0.0-dev-20240923154849
volumes:
- ./config:/config
2 changes: 0 additions & 2 deletions demos/nodejs-mysql/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,5 @@ services:
condition: service_healthy
mongo-rs-init:
condition: service_completed_successfully
# MySQL support is available via this image version
image: journeyapps/powersync-service:0.0.0-dev-20241024055608
volumes:
- ./config:/config
9 changes: 1 addition & 8 deletions services/powersync.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,7 @@
services:
powersync:
restart: unless-stopped
# This currently uses a development image for the Next version of the PowerSync
# service. This Next version contains a new module system which will enable plugable
# functionality in the future. Functionality in this version should be the same as the
# latest stable version.
# Please report any issues experienced. Thank you for testing.
# Feel free to revert to the stable version by using
# image: journeyapps/powersync-service:latest
image: journeyapps/powersync-service:0.0.0-dev-20240920084840
image: journeyapps/powersync-service:latest
# The unified service runs an API server and replication worker in the same container.
# These services can be executed in different containers by using individual entry commands e.g.
# Start only the API server with
Expand Down