You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
431 B
Django/Jinja
21 lines
431 B
Django/Jinja
---
|
|
version: '3.1'
|
|
services:
|
|
ghost:
|
|
labels:
|
|
ie.cianhatton.backup.enabled: "true"
|
|
ie.cianhatton.backup.schedule: "{{ backups.schedule_keys.nightly }}"
|
|
image: ghost:4-alpine
|
|
restart: unless-stopped
|
|
container_name: ghost
|
|
ports:
|
|
- 8080:2368
|
|
environment:
|
|
database__client: sqlite3
|
|
url: https://blog.cianhatton.ie
|
|
volumes:
|
|
- data:/var/lib/ghost/content
|
|
|
|
volumes:
|
|
data:
|