blob: 38b88910fc6d000f802995659d7a81e8df6b52f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# Based on https://github.com/TryGhost/ghost-docker
#
# Use the below flags to enable the Analytics or ActivityPub containers as well
COMPOSE_PROFILES=activitypub
# Ghost domain
# Custom public domain Ghost will run on
DOMAIN=swave.lol
# Ghost Admin domain
# If you have Ghost Admin setup on a separate domain uncomment the line below and add the domain
# You also need to uncomment the corresponding block in your Caddyfile
# ADMIN_DOMAIN=
# Database settings
# All database settings must not be changed once the database is initialised
DATABASE_ROOT_PASSWORD=ghostuserp@ssword
DATABASE_USER=ghost
DATABASE_PASSWORD=ghostghostpasswOrd
# ActivityPub
# If you'd prefer to self-host ActivityPub yourself uncomment the line below
ACTIVITYPUB_TARGET=activitypub:8080
# Ghost configuration (https://ghost.org/docs/config/)
# SMTP Email (https://ghost.org/docs/config/#mail)
# Transactional email is required for logins, account creation (staff invites), password resets and other features
# This is not related to bulk mail / newsletter sending
#mail__transport=SMTP
#mail__options__host=smtp.example.com
#mail__options__port=465
#mail__options__secure=true
#mail__options__auth__user=postmaster@example.com
#mail__options__auth__pass=1234567890
# Advanced customizations
# Force Ghost version
# You should only do this if you need to pin a specific version
# The update commands won't work
# GHOST_VERSION=6-alpine
# Port Ghost should listen on
# You should only need to edit this if you want to host
# multiple sites on the same server
# GHOST_PORT=2368
# Data locations
# Location to store uploaded data
UPLOAD_LOCATION=./docker/ghost/
# Location for database data
MYSQL_DATA_LOCATION=./docker/mysql
|