วิธีติดตั้ง Ghost ด้วย Docker

ขั้นที่ 1 - ทำการติดตั้ง Docker

ขั้นที่ 2 - ทำการสร้างโฟลเดอร์ ghost

mkdir ghost

ขั้นที่ 3 - ทำการสร้างไฟล์ชื่อ docker-compose.yml ในโฟลเดอร์ ghost

ใส่ข้อมูลในไฟล์ docker-compose.yml ตามด้านล่างนี้

# by default, the Ghost image will use SQLite (and thus requires no separate database container)
# we have used MySQL here merely for demonstration purposes (especially environment-variable-based configuration)

version: '3.1'

services:

  ghost:
    image: ghost:4-alpine
    restart: always
    ports:
      - 8080:2368
    environment:
      # see https://ghost.org/docs/config/#configuration-options
      database__client: mysql
      database__connection__host: db
      database__connection__user: root
      database__connection__password: example
      database__connection__database: ghost
      # this url value is just an example, and is likely wrong for your environment!
      url: http://localhost:8080
      # contrary to the default mentioned in the linked documentation, this image defaults to NODE_ENV=production (so development mode needs to be explicitly specified if desired)
      #NODE_ENV: development

  db:
    image: mysql:5.7
    restart: always
    environment:
      MYSQL_ROOT_PASSWORD: example

รันคำสั่งเพื่อสร้าง container

cd ghost
docker-compose up -d

เสร็จแล้วทดสอบเข้า URL http://localhost:8080

URL สำหรับ Admin http://localhost:8080/ghost
สำหรับหน้า Admin ต้องทำการ Create Account เริ่มต้นก่อนถึงจะเข้าใช้งานได้

จบสำหรับการ ติดตั้ง Ghost ด้วย Docker เบื้องต้น


แหล่งข้อมูลอ้างอิง