mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-28 18:52:24 -05:00
[feature] Add snapshot binary builds + uploads (#2119)
* [feature] Add snapshot binary builds + uploads * Update docs to include info on snapshot builds * review comments * little tweaks
This commit is contained in:
parent
e9c3663cce
commit
42bb352d53
4 changed files with 59 additions and 6 deletions
31
README.md
31
README.md
|
|
@ -40,6 +40,11 @@ Here's a screenshot of the instance landing page!
|
|||
- [Federation Issues](#federation-issues)
|
||||
- [Contributing](#contributing)
|
||||
- [Building](#building)
|
||||
- [Releases](#releases)
|
||||
- [Stable](#stable)
|
||||
- [Snapshots](#snapshots)
|
||||
- [Docker](#docker)
|
||||
- [Binary release .tar.gz](#binary-release-targz)
|
||||
- [Contact](#contact)
|
||||
- [Credits](#credits)
|
||||
- [Libraries](#libraries)
|
||||
|
|
@ -208,6 +213,32 @@ You would like to contribute to GtS? Great! ❤️❤️❤️ Check out the iss
|
|||
|
||||
Instructions for building GoToSocial from source are in the [CONTRIBUTING.md](./CONTRIBUTING.md) file.
|
||||
|
||||
## Releases
|
||||
|
||||
### Stable
|
||||
|
||||
We package our stable releases for both binary builds and Docker containers, so that you don't have to build from source yourself.
|
||||
|
||||
Check our [releases page](https://github.com/superseriousbusiness/gotosocial/releases) and our [getting started](https://docs.gotosocial.org/en/latest/getting_started/) documentation.
|
||||
|
||||
The Docker image `superseriousbusiness/gotosocial:latest` will always correspond to the latest stable release. Since this tag is overwritten frequently, you may want to use Docker CLI flag `--pull always` to ensure that you always have the most up-to-date image every time you run using this tag. Alternatively, run `docker pull superseriousbusiness/gotosocial:latest` manually just before use.
|
||||
|
||||
### Snapshots
|
||||
|
||||
We also make snapshot builds every time something is merged into the main branch, so you can run from whatever code is on main if you wish.
|
||||
|
||||
Please be warned that you do so at your own risk! We try to keep main working properly, but we make absolutely no guarantees. Take a stable release instead if you're unsure.
|
||||
|
||||
#### Docker
|
||||
|
||||
To run from main using Docker, use the `snapshot` Docker tag. The Docker image `superseriousbusiness/gotosocial:snapshot` will always correspond to the latest commit on main. Since this tag is overwritten frequently, you may want to use Docker CLI flag `--pull always` to ensure that you always have the most up-to-date image every time you run using this tag. Alternatively, run `docker pull superseriousbusiness/gotosocial:snapshot` manually just before use.
|
||||
|
||||
#### Binary release .tar.gz
|
||||
|
||||
To run from main using a binary release, download the appropriate .tar.gz file for your architecture from our [self-hosted Minio S3 repository](https://minio.s3.superseriousbusiness.org/browser/gotosocial-snapshots).
|
||||
|
||||
Snapshot binary releases in the S3 bucket are keyed by Github commit hash. To get the latest one, sort by Last Modified, or check out the list of commits [here](https://github.com/superseriousbusiness/gotosocial/commits/main), copy the SHA of the latest one, and paste it in the Minio console filter. Snapshot binary releases are expired after 28 days, to keep our hosting costs down.
|
||||
|
||||
## Contact
|
||||
|
||||
For questions and comments, you can [join our Matrix space](https://matrix.to/#/#gotosocial-space:superseriousbusiness.org) at `#gotosocial-space:superseriousbusiness.org`. This is the quickest way to reach the devs. You can also mail [admin@gotosocial.org](mailto:admin@gotosocial.org).
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue