Compare commits

..

No commits in common. "b5754508743f672020f227d90005b76aab9c9793" and "781d2ec2aeaeef729680778abb3b80708008b186" have entirely different histories.

4 changed files with 6 additions and 10 deletions

View file

@ -6,10 +6,6 @@
@Phil
### 📚 Documentation
- [Docs] Changed README for docker deployments [[#15](https://git.hackmi.ch/Phil/goshorly/pulls/15)]
### Misc
- [CI] Upload version binary to forgejo release [[#13](https://git.hackmi.ch/Phil/goshorly/pulls/13)]

View file

@ -29,13 +29,13 @@ docker-compose up -d
To simplify your deployment, we offer the following Docker tags:
- 🔥 [Versioned Tags (X, X.X, X.X.X): Specific release versions.](https://git.hackmi.ch/Phil/-/packages/container/goshorly/versions) (⚠️ Recommended ⚠️)
- 🔴 latest: Latest stable release (may include breaking changes).
- ⚠️ dev: Latest code from the main branch (experimental).
- dev: Latest code from the main branch (experimental).
- latest: Latest stable release (may include breaking changes).
- Versioned Tags (vX, vX.X, vX.X.X): Specific release versions.
#### Using Binary
1. Download the latest binary from the releases.
2. Create an .env file.
2. Create an .env file (or use the .env.example)
and change the values for your environment.
3. Run the binary the terminal.

View file

@ -2,7 +2,7 @@ version: "3"
services:
web:
# build: . # Only if you want to Build the image on your own Server!
image: git.hackmi.ch/phil/goshorly:1.0
image: git.hackmi.ch/phil/goshorly:latest
environment:
- HOST=example.org # Domain or IP-Adress
- PORT=3000 # The Port you want to use

View file

@ -2,7 +2,7 @@ version: "3"
services:
web:
# build: . # Only if you want to Build the image on your own Server!
image: git.hackmi.ch/phil/goshorly:1.0
image: git.hackmi.ch/phil/goshorly:latest
environment:
- HOST=127.0.0.1 # Domain or IP-Adress
- PORT=3000 # The Port you want to use