Compare commits
5 Commits
64eb98fe0e
...
7c4cc5600d
Author | SHA1 | Date | |
---|---|---|---|
7c4cc5600d | |||
2899a31a1f | |||
7d5b892a1c | |||
f381bb7a7b | |||
9098407321 |
|
@ -145,6 +145,7 @@ services:
|
|||
- ${CONFIG_LOCATION}/readarr:/config
|
||||
- ${DATA_LOCATION}/Books:/books
|
||||
- /media/seedbox:/downloads
|
||||
- ${DATA_LOCATION}/Downloads:/downloads-local
|
||||
expose:
|
||||
- "8787"
|
||||
ports:
|
||||
|
@ -164,6 +165,7 @@ services:
|
|||
- ${CONFIG_LOCATION}/readarr-audio:/config
|
||||
- ${DATA_LOCATION}/Audiobooks:/audiobooks
|
||||
- /media/seedbox:/downloads
|
||||
- ${DATA_LOCATION}/Downloads:/downloads-local
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
default:
|
||||
|
|
|
@ -1,9 +0,0 @@
|
|||
location /tt-rss/ {
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $remote_addr;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
|
||||
proxy_pass http://127.0.0.1:8280/tt-rss/;
|
||||
break;
|
||||
}
|
|
@ -1,3 +1,5 @@
|
|||
DOMAIN=example.com
|
||||
DBPASS=password
|
||||
EMAIL=example@mail.com
|
||||
DOMAIN=example.com
|
||||
|
||||
|
|
5
sites/botc/.gitignore
vendored
5
sites/botc/.gitignore
vendored
|
@ -1,4 +1,3 @@
|
|||
backup/*
|
||||
wordpress/*
|
||||
data/*
|
||||
db/*
|
||||
content/*
|
||||
config.*.json
|
|
@ -1,33 +1,41 @@
|
|||
services:
|
||||
ghost:
|
||||
image: ghost:5
|
||||
restart: always
|
||||
ports:
|
||||
- 2371:2368
|
||||
expose:
|
||||
- 2371
|
||||
environment:
|
||||
# see https://ghost.org/docs/config/#configuration-options
|
||||
database__client: mysql
|
||||
database__connection__host: botc-db-1
|
||||
database__connection__user: root
|
||||
database__connection__password: ${DBPASS}
|
||||
database__connection__database: ghost
|
||||
# VIRTUAL_HOST: "www.${DOMAIN}, ${DOMAIN}"
|
||||
VIRTUAL_HOST: "www.phillybotc.com, phillybotc.com"
|
||||
VIRTUAL_PORT: 2371
|
||||
# LETSENCRYPT_HOST: "${DOMAIN}, www.${DOMAIN}"
|
||||
LETSENCRYPT_HOST: "www.phillybotc.com, phillybotc.com"
|
||||
LETSENCRYPT_EMAIL: ${EMAIL}
|
||||
# url: http://0.0.0.0:2371 #Dev
|
||||
url: "https://phillybotc.com" #Prod
|
||||
# contrary to the default mentioned in the linked documentation, this image defaults to NODE_ENV=production (so development mode needs to be explicitly specified if desired)
|
||||
NODE_ENV: production
|
||||
volumes:
|
||||
- ./content:/var/lib/ghost/content
|
||||
# - ./themes:/var/lib/ghost/current/content/themes:rw
|
||||
db:
|
||||
image: mysql:8.0
|
||||
restart: always
|
||||
environment:
|
||||
MYSQL_DATABASE: clocktower
|
||||
MYSQL_USER: wordpress
|
||||
MYSQL_PASSWORD: ${DBPASS}
|
||||
MYSQL_RANDOM_ROOT_PASSWORD: '1'
|
||||
MYSQL_DATABASE: ghost
|
||||
MYSQL_ROOT_PASSWORD: ${DBPASS}
|
||||
volumes:
|
||||
- ./db:/var/lib/mysql:rw
|
||||
wordpress:
|
||||
depends_on:
|
||||
- db
|
||||
image: wordpress
|
||||
restart: always
|
||||
environment:
|
||||
# PUID: ${UID}
|
||||
# PGID: ${GID}
|
||||
WORDPRESS_DB_HOST: botc-db-1
|
||||
WORDPRESS_DB_USER: wordpress
|
||||
WORDPRESS_DB_PASSWORD: ${DBPASS}
|
||||
WORDPRESS_DB_NAME: clocktower
|
||||
VIRTUAL_HOST: "www.phillybotc.com, phillybotc.com"
|
||||
LETSENCRYPT_HOST: "phillybotc.com, www.phillybotc.com"
|
||||
LETSENCRYPT_EMAIL: ${EMAIL}
|
||||
# LETSENCRYPT_TEST: true
|
||||
volumes:
|
||||
- ./wordpress:/var/www/html:rw
|
||||
- ./backup:/var/www/html/wp-content/updraft:rw
|
||||
- ./data:/var/lib/mysql
|
||||
volumes:
|
||||
db:
|
||||
networks:
|
||||
default:
|
||||
name: nginx-proxy
|
||||
|
|
2
sites/botc/update.sh
Executable file
2
sites/botc/update.sh
Executable file
|
@ -0,0 +1,2 @@
|
|||
sudo docker cp config.development.json botc-ghost-1:/var/lib/ghost/.
|
||||
sudo docker cp config.production.json botc-ghost-1:/var/lib/ghost/.
|
2
sites/photos/update.sh
Executable file
2
sites/photos/update.sh
Executable file
|
@ -0,0 +1,2 @@
|
|||
sudo docker cp config.development.json photos-ghost-1:/var/lib/ghost/.
|
||||
sudo docker cp config.production.json photos-ghost-1:/var/lib/ghost/.
|
Loading…
Reference in New Issue
Block a user