ghost,

Ghost

Gineesh Gineesh Follow · 1 min read
Share this

Ghost in Container

$ podman run -d –name some-ghost ghost $ podman run -d -p 3001:2368 -e url=http://localhost:3001 –name some-ghost ghost

Podman compose

version: '3.1'

services:

  ghost:
    image: ghost:1-alpine
    restart: always
    ports:
      - 8080:2368
    environment:
      # see https://docs.ghost.org/docs/config#section-running-ghost-with-config-env-variables
      database__client: mysql
      database__connection__host: db
      database__connection__user: root
      database__connection__password: example
      database__connection__database: ghost

  db:
    image: mysql:5.7
    restart: always
    environment:
      MYSQL_ROOT_PASSWORD: example
Gineesh
Written by Gineesh Follow
Author, Automation and Containerization Guy, techbeatly.com/youtube

Latest Stories

Featured