You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/deployment/docker-image.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,19 +35,19 @@ GHCR is the canonical image registry:
35
35
36
36
```sh
37
37
docker pull ghcr.io/corebunch/instatic:latest
38
-
docker pull ghcr.io/corebunch/instatic:0.0.1
38
+
docker pull ghcr.io/corebunch/instatic:0.0.2
39
39
```
40
40
41
41
Docker Hub is a discoverability mirror:
42
42
43
43
```sh
44
44
docker pull corebunch/instatic:latest
45
-
docker pull corebunch/instatic:0.0.1
45
+
docker pull corebunch/instatic:0.0.2
46
46
```
47
47
48
48
When both registries are available, prefer GHCR in Compose files because it is produced directly by the release workflow.
49
49
50
-
The v0.0.1 published image is built for `linux/amd64`. Use it on Railway and x86_64 VPS/container hosts. ARM64 hosts should build from source for now, or wait for the native arm64 release job before pulling GHCR images directly.
50
+
The v0.0.2 published image is built for `linux/amd64`. Use it on Railway and x86_64 VPS/container hosts. ARM64 hosts should build from source for now, or wait for the native arm64 release job before pulling GHCR images directly.
51
51
52
52
## Run With SQLite
53
53
@@ -100,7 +100,7 @@ Replace `instatic:local` with `ghcr.io/corebunch/instatic:<tag>` when deploying
100
100
Create an app service from Docker image source:
101
101
102
102
```txt
103
-
ghcr.io/corebunch/instatic:0.0.1
103
+
ghcr.io/corebunch/instatic:0.0.2
104
104
```
105
105
106
106
Attach a Railway volume at `/app/storage`, set the health check path to `/health`, and set app variables:
@@ -113,7 +113,7 @@ STATIC_DIR=/app/dist
113
113
INSTATIC_SECRET_KEY=<output of bun run scripts/generate-secret-key.ts>
114
114
```
115
115
116
-
Enable Railway Image Auto Updates when you want Railway to move the service forward automatically during a maintenance window. Use `:latest` for "always follow the newest image", or a semver tag such as `:0.0.1` if you want Railway's semver update controls.
116
+
Enable Railway Image Auto Updates when you want Railway to move the service forward automatically during a maintenance window. Use `:latest` for "always follow the newest image", or a semver tag such as `:0.0.2` if you want Railway's semver update controls.
Copy file name to clipboardExpand all lines: docs/deployment/railway.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ Railway is the simplest managed target for Instatic because it can run the publi
16
16
Both templates use:
17
17
18
18
```txt
19
-
Image=ghcr.io/corebunch/instatic:0.0.1
19
+
Image=ghcr.io/corebunch/instatic:0.0.2
20
20
PORT=8080
21
21
UPLOADS_DIR=/app/storage/uploads
22
22
STATIC_DIR=/app/dist
@@ -30,7 +30,7 @@ Configure the app service health check path as `/health`. If Railway asks which
30
30
Use a Docker image source for production installs:
31
31
32
32
```txt
33
-
ghcr.io/corebunch/instatic:0.0.1
33
+
ghcr.io/corebunch/instatic:0.0.2
34
34
```
35
35
36
36
The image already runs:
@@ -46,7 +46,7 @@ Recommended service settings:
46
46
| Setting | Value |
47
47
|---|---|
48
48
| Source | Docker image |
49
-
| Image |`ghcr.io/corebunch/instatic:0.0.1`|
49
+
| Image |`ghcr.io/corebunch/instatic:0.0.2`|
50
50
| Public networking | HTTP enabled |
51
51
| Target port |`8080`|
52
52
| Healthcheck path |`/health`|
@@ -121,7 +121,7 @@ Railway volume backups apply to mounted volumes. For Postgres, use Railway's dat
121
121
Enable Railway Image Auto Updates on the app service:
122
122
123
123
- Use `ghcr.io/corebunch/instatic:latest` when you want the service to redeploy whenever the `latest` tag moves.
124
-
- Use a semver tag like `ghcr.io/corebunch/instatic:0.0.1` when you want Railway to stage matching patch or minor updates according to the service's auto-update preference.
124
+
- Use a semver tag like `ghcr.io/corebunch/instatic:0.0.2` when you want Railway to stage matching patch or minor updates according to the service's auto-update preference.
125
125
126
126
Set a maintenance window before enabling automatic updates on sites with attached volumes.
0 commit comments