builds
publish-github-pages / deploy (push) Waiting to run

This commit is contained in:
h202-wq
2026-07-09 11:25:21 -04:00
parent 9b70051f0d
commit 20554682e2
9 changed files with 58 additions and 84 deletions
+2 -2
View File
@@ -15,7 +15,7 @@ EagleCast is a simple binary application that requires a Postgres database insta
## Docker
Build the `eaglecast` Docker image locally with `make dist` and `docker build`, or push it to a registry of your choice.
The latest image is available on the Gitea registry at `source.offmarket.win/aleagle/eaglecast:latest`.
The recommended method is to download the [docker-compose.yml](https://source.offmarket.win/aleagle/EagleCast/src/branch/master/docker-compose.yml) file, customize it for your environment and then to simply run `docker compose up -d`.
@@ -92,7 +92,7 @@ The repository ships a Coolify-ready compose file, [docker-compose.coolify.yml](
A nightly build is automatically published with the latest changes merged to the repository. If you want to access the latest changes without waiting for versioned releases, you can obtain the nightly builds and follow the same instructions above.
- **Docker**: `eaglecast:nightly` (use this as the image name in the docker-compose file)
- **Docker**: `source.offmarket.win/aleagle/eaglecast:nightly` (use this as the image name in the docker-compose file)
- **Binary**: [Download nightly release](https://source.offmarket.win/aleagle/EagleCast/releases)
+2 -2
View File
@@ -43,7 +43,7 @@ To restore a previous version, you have to restore the DB for that particular ve
1. Stop EagleCast.
2. Restore your pre-upgrade database.
3. If you're using `docker compose`, edit `docker-compose.yml` and change `eaglecast:latest` to `eaglecast:v2.4.0` _(for example)_.
3. If you're using `docker compose`, edit `docker-compose.yml` and change `source.offmarket.win/aleagle/eaglecast:latest` to `source.offmarket.win/aleagle/eaglecast:v2.4.0` _(for example)_.
4. Restart.
**Example with docker:**
@@ -64,7 +64,7 @@ psql -h 127.0.0.1 -p 9432 -U eaglecast -W eaglecast < eaglecast-preupgrade-db.sq
```
x-app-defaults: &app-defaults
restart: unless-stopped
image: eaglecast:v2.4.0
image: source.offmarket.win/aleagle/eaglecast:v2.4.0
```
4. Restart:
`sudo docker compose up -d app db nginx certbot`