diff --git a/docs/src/content/docs/en/getting-started/create-podcast.mdx b/docs/src/content/docs/en/getting-started/create-podcast.mdx index ef7c7a74..65645f89 100644 --- a/docs/src/content/docs/en/getting-started/create-podcast.mdx +++ b/docs/src/content/docs/en/getting-started/create-podcast.mdx @@ -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 diff --git a/docs/src/content/docs/en/getting-started/docker.mdx b/docs/src/content/docs/en/getting-started/docker.mdx index 7ed5f0ba..0a8e0dfa 100644 --- a/docs/src/content/docs/en/getting-started/docker.mdx +++ b/docs/src/content/docs/en/getting-started/docker.mdx @@ -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). + + ## 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