mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-04 15:26:43 +02:00
docs(docker): add tip to encourage users to pin the castopod image version during production
This commit is contained in:
parent
30db307d70
commit
96d98a0d41
2 changed files with 16 additions and 6 deletions
|
|
@ -2,8 +2,6 @@
|
|||
title: Create your first podcast
|
||||
---
|
||||
|
||||
import { Aside } from "@astrojs/starlight/components";
|
||||
|
||||
From the left hand navigation sidebar, press the `+` sign to the right of Podcasts to create your first podcast.
|
||||
|
||||
## Podcast Identity
|
||||
|
|
|
|||
|
|
@ -2,6 +2,8 @@
|
|||
title: Official Docker image
|
||||
---
|
||||
|
||||
import { Aside } from "@astrojs/starlight/components";
|
||||
|
||||
Castopod publishes a single official Docker image to the Docker Hub as part of
|
||||
its automated build process:
|
||||
|
||||
|
|
@ -15,10 +17,20 @@ service can be configured as the caching layer.
|
|||
|
||||
## Supported tags
|
||||
|
||||
- `develop` [unstable], latest development branch build
|
||||
- `beta` [stable], latest beta version build
|
||||
- `latest` [stable], latest version build
|
||||
- `1.x.x` [stable], specific version build (since `1.0.0`)
|
||||
- `latest` [stable], latest version build
|
||||
- `develop` [unstable], latest development branch build
|
||||
|
||||
Other unstable tags (e.g., `beta`, `next`) may be actively pushed during development phases.
|
||||
See [all tags in the docker hub](https://hub.docker.com/r/castopod/castopod/tags).
|
||||
|
||||
<Aside type="tip">
|
||||
To ensure reproducibility and stability during production, always pin to a
|
||||
specific version tag like `1.x.x` (e.g., `1.15.1`) instead of `latest`.
|
||||
<br />
|
||||
The latest tag changes unexpectedly, risking downtime and inconsistent
|
||||
deployments.
|
||||
</Aside>
|
||||
|
||||
## Example usage
|
||||
|
||||
|
|
@ -29,7 +41,7 @@ service can be configured as the caching layer.
|
|||
```yml
|
||||
services:
|
||||
castopod:
|
||||
image: castopod/castopod:latest
|
||||
image: castopod/castopod:latest # Pin to a specific version during production
|
||||
container_name: "castopod"
|
||||
volumes:
|
||||
- castopod-media:/app/public/media
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue