docker-compose --env-file ghost.env up
Last active
September 8, 2021 13:26
-
-
Save jsiebens/bf743907a5552898d09c0a4a401c9339 to your computer and use it in GitHub Desktop.
Ghost + Inlets PRO http client
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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