11 lines
353 B
YAML
11 lines
353 B
YAML
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
|