Web ghost:latest

ghost

Ghost blogging platform with persistent content

Install

cardinal blueprint install ghost
cardinal blueprint install ghost
# or override resources / env at install time:
cardinal blueprint install ghost --memory 1g --cpus 2 -e KEY=value -y

Manual equivalent

cardinal run
cardinal run -d \
  --restart always \
  -n ghost \
  -p "2368:2368/tcp" \
  -v "ghost_data:/var/lib/ghost/content" \
  --memory 512m \
  --cpus 1.0 \
  -e url="http://localhost:2368" \
  -e NODE_ENV="production" \
  -e database__client="sqlite3" \
  -e database__connection__filename="content/data/ghost.db" \
  ghost:latest

Configuration

Imageghost:latest
Restartalways
Ports2368:2368/tcp
Volumesghost_data:/var/lib/ghost/content
Memory512m
CPUs1.0
Environment variableDefault value
url http://localhost:2368
NODE_ENV production
database__client sqlite3
database__connection__filename content/data/ghost.db

More web