Skip to content

Instantly share code, notes, and snippets.

@jsiebens
Last active September 8, 2021 13:26
Show Gist options
  • Save jsiebens/bf743907a5552898d09c0a4a401c9339 to your computer and use it in GitHub Desktop.
Save jsiebens/bf743907a5552898d09c0a4a401c9339 to your computer and use it in GitHub Desktop.
Ghost + Inlets PRO http client
docker-compose --env-file ghost.env up
version: '3.2'
volumes:
ghost-data: {}
services:
ghost:
image: ghost:4.12.1-alpine
restart: always
environment:
url: "https://${GHOST_DOMAIN}"
volumes:
- "ghost-data:/var/lib/ghost/content"
inlets:
image: ghcr.io/inlets/inlets-pro:0.9.0-rc3
restart: always
command: [
"http",
"client",
"--url", "${INLETS_URL}",
"--token", "${INLETS_TOKEN}",
"--license", "${INLETS_LICENSE}",
"--upstream", "http://ghost:2368"
]
INLETS_URL=<your inlets remote>
INLETS_TOKEN=<your inlets token>
INLETS_LICENSE=<your inlets license>
GHOST_DOMAIN=<your ghost domain>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment