chore: initial commit
This commit is contained in:
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
*.env
|
||||||
|
/content/
|
||||||
4
app.env.example
Normal file
4
app.env.example
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
url=https://myurl.com
|
||||||
|
database__client=sqlite3
|
||||||
|
database__connection__filename=/var/lib/ghost/content/data/ghost.db
|
||||||
|
database__useNullAsDefault=true
|
||||||
14
docker-compose.yml
Normal file
14
docker-compose.yml
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
services:
|
||||||
|
ghost:
|
||||||
|
image: ghost:6.16.1-alpine
|
||||||
|
container_name: ghost
|
||||||
|
restart: always
|
||||||
|
networks:
|
||||||
|
- reverse-proxy
|
||||||
|
env_file: app.env
|
||||||
|
volumes:
|
||||||
|
- ./content:/var/lib/ghost/content
|
||||||
|
|
||||||
|
networks:
|
||||||
|
reverse-proxy:
|
||||||
|
external: true
|
||||||
Reference in New Issue
Block a user