Compare commits

...

2 Commits

Author SHA1 Message Date
f381bb7a7b I HATE DOCKER VOLUMES SOOOO MUCH 2024-08-15 01:53:07 -04:00
9098407321 switching up sites 2024-08-15 01:20:30 -04:00
9 changed files with 53 additions and 47 deletions

View File

@ -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:

View File

@ -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;
}

View File

@ -1,4 +0,0 @@
backup/*
wordpress/*
data/*
db/*

View File

@ -1,34 +0,0 @@
services:
db:
image: mysql:8.0
restart: always
environment:
MYSQL_DATABASE: clocktower
MYSQL_USER: wordpress
MYSQL_PASSWORD: ${DBPASS}
MYSQL_RANDOM_ROOT_PASSWORD: '1'
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
networks:
default:
name: nginx-proxy
external: true

View File

@ -1,3 +1,5 @@
DOMAIN=example.com
DBPASS=password
EMAIL=example@mail.com
DOMAIN=example.com

3
sites/ghost-botc/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
db/*
content/*
config.*.json

View File

@ -0,0 +1,42 @@
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: ghost-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: ghost
MYSQL_ROOT_PASSWORD: ${DBPASS}
volumes:
- db:/var/lib/mysql
volumes:
db:
networks:
default:
name: nginx-proxy
external: true

2
sites/ghost-botc/update.sh Executable file
View File

@ -0,0 +1,2 @@
sudo docker cp config.development.json ghost-botc-ghost-1:/var/lib/ghost/.
sudo docker cp config.production.json ghost-botc-ghost-1:/var/lib/ghost/.

2
sites/photos/update.sh Executable file
View 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/.