Blame

63a263 mb tech 2026-01-13 00:44:41
added chost
1
# Ghost
e49ce8 mb tech 2026-01-13 15:02:45
updated
2
3
## compose.yml
63a263 mb tech 2026-01-13 00:44:41
added chost
4
```yaml
93b6f8 mb tech 2026-01-13 15:04:10
updated
5
---
63a263 mb tech 2026-01-13 00:44:41
added chost
6
services:
7
ghost:
8
image: ghost:latest
9
container_name: ghost
10
restart: unless-stopped
11
ports:
12
- "2368:2368"
13
environment:
14
# url: http://localhost:2368
15
database__client: sqlite3
16
database__connection__filename: /var/lib/ghost/content/data/ghost.db
17
database__useNullAsDefault: 'true'
18
# database__debug: 'false'
19
volumes:
20
- ./content:/var/lib/ghost/content
21
```