@ainyc/canonry 1.7.1 → 1.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -0
- package/assets/assets/index-C710XAPy.js +243 -0
- package/assets/assets/{index-BxWGYuSH.css → index-Ca3ICz3n.css} +1 -1
- package/assets/index.html +2 -2
- package/dist/{chunk-WTI5ALRV.js → chunk-P4D4VWJQ.js} +844 -65
- package/dist/cli.js +81 -10
- package/dist/index.js +1 -1
- package/package.json +6 -6
- package/assets/assets/index-D_jajzpq.js +0 -205
package/README.md
CHANGED
|
@@ -303,6 +303,21 @@ docker run --rm \
|
|
|
303
303
|
canonry
|
|
304
304
|
```
|
|
305
305
|
|
|
306
|
+
Published container images are available on Docker Hub:
|
|
307
|
+
|
|
308
|
+
- [Repository overview](https://hub.docker.com/repository/docker/arberx/canonry/general)
|
|
309
|
+
- [Available tags](https://hub.docker.com/repository/docker/arberx/canonry/tags)
|
|
310
|
+
|
|
311
|
+
```bash
|
|
312
|
+
docker pull arberx/canonry:latest
|
|
313
|
+
```
|
|
314
|
+
|
|
315
|
+
The same image is also published to GitHub Container Registry:
|
|
316
|
+
|
|
317
|
+
```bash
|
|
318
|
+
docker pull ghcr.io/ainyc/canonry:latest
|
|
319
|
+
```
|
|
320
|
+
|
|
306
321
|
Keep the container to a single replica and mount persistent storage at `/data` so SQLite and `config.yaml` survive restarts.
|
|
307
322
|
|
|
308
323
|
No CORS configuration is required for this Docker setup. The dashboard and API are served by the same Canonry process on the same origin. CORS only becomes relevant if you split the frontend and API onto different domains.
|