Blame
|
1 | # Ghost |
||||||
|
2 | |||||||
| 3 | ## compose.yml |
|||||||
|
4 | ```yaml |
||||||
|
5 | --- |
||||||
|
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 | ``` |
|||||||
