Added inital configuration for Ghost, Caddy, MySQL & Traffic Analytics

This commit is contained in:
Joe Grigg
2025-05-27 16:36:01 +01:00
parent efe8131c4f
commit 72be447b06
5 changed files with 166 additions and 0 deletions

21
CLAUDE.md Normal file
View File

@@ -0,0 +1,21 @@
# CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
## Project Overview
This is a Docker Compose setup for Ghost, a modern publishing platform. The repository currently contains a minimal structure with a `compose.yml` file for containerized deployment.
## Common Commands
Since this is a Docker Compose project, the primary commands will be:
- `docker compose up -d` - Start Ghost services in detached mode
- `docker compose down` - Stop and remove Ghost services
- `docker compose logs` - View service logs
- `docker compose ps` - View running services
- `docker compose pull` - Pull latest images
## Architecture
The project uses Docker Compose to orchestrate Ghost and its dependencies (typically MySQL/MariaDB database). The main configuration is defined in `compose.yml`.