Merge pull request 'botc-switch' (#4) from botc-switch into main
Reviewed-on: #4
This commit is contained in:
commit
7c4cc5600d
|
@ -145,6 +145,7 @@ services:
|
||||||
- ${CONFIG_LOCATION}/readarr:/config
|
- ${CONFIG_LOCATION}/readarr:/config
|
||||||
- ${DATA_LOCATION}/Books:/books
|
- ${DATA_LOCATION}/Books:/books
|
||||||
- /media/seedbox:/downloads
|
- /media/seedbox:/downloads
|
||||||
|
- ${DATA_LOCATION}/Downloads:/downloads-local
|
||||||
expose:
|
expose:
|
||||||
- "8787"
|
- "8787"
|
||||||
ports:
|
ports:
|
||||||
|
@ -164,6 +165,7 @@ services:
|
||||||
- ${CONFIG_LOCATION}/readarr-audio:/config
|
- ${CONFIG_LOCATION}/readarr-audio:/config
|
||||||
- ${DATA_LOCATION}/Audiobooks:/audiobooks
|
- ${DATA_LOCATION}/Audiobooks:/audiobooks
|
||||||
- /media/seedbox:/downloads
|
- /media/seedbox:/downloads
|
||||||
|
- ${DATA_LOCATION}/Downloads:/downloads-local
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
networks:
|
networks:
|
||||||
default:
|
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
|
DOMAIN=example.com
|
||||||
DBPASS=password
|
DBPASS=password
|
||||||
EMAIL=example@mail.com
|
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/*
|
db/*
|
||||||
|
content/*
|
||||||
|
config.*.json
|
|
@ -1,34 +1,42 @@
|
||||||
services:
|
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:
|
db:
|
||||||
image: mysql:8.0
|
image: mysql:8.0
|
||||||
restart: always
|
restart: always
|
||||||
environment:
|
environment:
|
||||||
MYSQL_DATABASE: clocktower
|
MYSQL_DATABASE: ghost
|
||||||
MYSQL_USER: wordpress
|
MYSQL_ROOT_PASSWORD: ${DBPASS}
|
||||||
MYSQL_PASSWORD: ${DBPASS}
|
|
||||||
MYSQL_RANDOM_ROOT_PASSWORD: '1'
|
|
||||||
volumes:
|
volumes:
|
||||||
- ./db:/var/lib/mysql:rw
|
- ./data:/var/lib/mysql
|
||||||
wordpress:
|
volumes:
|
||||||
depends_on:
|
db:
|
||||||
- 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
|
|
||||||
networks:
|
networks:
|
||||||
default:
|
default:
|
||||||
name: nginx-proxy
|
name: nginx-proxy
|
||||||
external: true
|
external: true
|
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