Refactor docker-compose.yml to remove commented out port mapping for PostgreSQL

Refactor compose/apps.yml to update URL with dynamic domain name

Refactor traefik.yml to update routing rules for neo4j-bolt-router

Refactor traefik.yml to fix routing rules for resume and blog subdomains

Refactor makefile to use 'always' flag when running docker compose

Refactor docker-compose.yml to update second volume path for custom configuration file

Refactor docker-compose.yml to update MINIO_SERVER_URL and NEO4J_dbms.default_advertised_address

Refactor traefik.yml to enable routing for neo4j subdomains

Refactor traefik.yml to fix routing rules for resume and blog subdomains
This commit is contained in:
2024-05-29 22:49:53 +08:00
parent 8820fbe01e
commit f865ba6f16
4 changed files with 55 additions and 93 deletions
+2 -2
View File
@@ -90,7 +90,7 @@ services:
depends_on:
- ghost-db
environment:
url: https://ghost.furyhawk.lol
url: https://ghost.${DOMAINNAME}
database__client: mysql
database__connection__host: ghost-db
database__connection__user: root
@@ -183,7 +183,7 @@ services:
volumes:
- privatebin_data:/srv/data # data volume for pastes allows pastes
# to persist after container stop or restart
- './config/conf.php:/srv/cfg/conf.php:ro' # second volume for custom configuration file
- "~/config/conf.php:/srv/cfg/conf.php:ro" # second volume for custom configuration file
expose:
- 8080
restart: unless-stopped