diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 1c158e2..57ede03 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -11,7 +11,7 @@ All notable changes of this project will be documented in this file. - [ghcr.io/mangatsu/web](https://github.com/Mangatsu/server/pkgs/container/server) ### Added -- Add a more secure logic to handle CORS +- More secure logic to handle CORS - An env `MTSU_STRICT_ACAO` ('true' or 'false') to disable or enable it ### Changed diff --git a/docs/docker-compose.example.yml b/docs/docker-compose.example.yml index 0c1cc37..2fe3b02 100644 --- a/docs/docker-compose.example.yml +++ b/docs/docker-compose.example.yml @@ -3,7 +3,7 @@ version: '3.8' services: backend: hostname: mtsuserver - image: luukuton/mangatsu-server:latest + image: ghcr.io/mangatsu/server:latest user: 1000:1000 # should have access to the volumes. For data dir, both read and write is required. For libraries only read is required. ports: - '5050:5050' # container:host @@ -59,7 +59,7 @@ services: frontend: hostname: mtsuweb - image: luukuton/mangatsu-web:latest + image: ghcr.io/mangatsu/web:latest ports: - '3030:3030' # container:host restart: always diff --git a/docs/docker-compose.rclone.yml b/docs/docker-compose.rclone.yml index 1cf9af8..be57314 100644 --- a/docs/docker-compose.rclone.yml +++ b/docs/docker-compose.rclone.yml @@ -3,7 +3,7 @@ version: '3.8' services: backend: hostname: mtsuserver - image: luukuton/mangatsu-server:latest + image: ghcr.io/mangatsu/server:latest user: 1000:1000 ports: - '5050:5050' # container:host @@ -32,7 +32,7 @@ services: frontend: hostname: mtsuweb - image: luukuton/mangatsu-web:latest + image: ghcr.io/mangatsu/web:latest ports: - '3030:3030' # container:host restart: always