From b61c7dd0325395a31c14cebf16f924546c8218a8 Mon Sep 17 00:00:00 2001 From: Michel Date: Sat, 9 Sep 2023 15:51:27 +0200 Subject: [PATCH] New addition: Astro --- astro/.env.sample | 7 +++++++ astro/compose.yml | 10 ++++++++++ 2 files changed, 17 insertions(+) create mode 100644 astro/.env.sample create mode 100644 astro/compose.yml diff --git a/astro/.env.sample b/astro/.env.sample new file mode 100644 index 0000000..5c0fe3b --- /dev/null +++ b/astro/.env.sample @@ -0,0 +1,7 @@ +# Uncomment and change the following variables if you want to use them. +#RESTART=unless-stopped +#SYNOLOGY_VOLUME=volume1 +#STACK_NAME=astro +#ASTRO_CONTAINER_NAME=Astro +#ASTRO_TAG=latest +#ASTRO_PORT=8088 diff --git a/astro/compose.yml b/astro/compose.yml new file mode 100644 index 0000000..7ebc595 --- /dev/null +++ b/astro/compose.yml @@ -0,0 +1,10 @@ +services: + # Astro + astro: + container_name: ${ASTRO_CONTAINER_NAME:-Astro} + image: igorsheg/astro:${ASTRO_TAG:-latest} + restart: ${RESTART:-unless-stopped} + ports: + - ${ASTRO_PORT:-8088}:8088 + volumes: + - /${SYNOLOGY_VOLUME:-volume1}/docker/${STACK_NAME:-astro}/${ASTRO_CONTAINER_NAME:-Astro}/app/server/data:/app/server/data