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: readme.md
+5-6Lines changed: 5 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -83,13 +83,12 @@ simpler fashion**
83
83
84
84
### Existing Image
85
85
86
-
The repository builds a nightly image that you can use directly if you don't
87
-
wish to tweak anything.
86
+
The repository builds and publishes a `latest` and a semver tagged version on each release. You can use that if you do not wish to tweak or change anything in the original source code and build structure
88
87
89
88
```sh
90
-
$ docker run -p "3000:3000" ghcr.io/barelyhuman/goblin:nightly
89
+
$ docker run -p "3000:3000" ghcr.io/barelyhuman/goblin:latest
91
90
# change the domain to whatever you are using for it
92
-
$ docker run -e "GOBLIN_ORIGIN_URL=example.com" -p "3000:3000" ghcr.io/barelyhuman/goblin:nightly
91
+
$ docker run -e "GOBLIN_ORIGIN_URL=example.com" -p "3000:3000" ghcr.io/barelyhuman/goblin:latest
93
92
```
94
93
95
94
#### Using Docker
@@ -155,8 +154,8 @@ ORIGIN_URL=
155
154
```sh
156
155
# www/.env
157
156
158
-
# the same url as ORIGIN_URL but added again because vite needs it in the repo
159
-
VITE_GOBLIN_ORIGIN_URL=
157
+
# the same url as ORIGIN_URL but added again because the static build needs it in the repo
158
+
GOBLIN_ORIGIN_URL=
160
159
```
161
160
162
161
running the `build.sh` should handle building with the needed env files and
0 commit comments