From 7d9281aef2a9b62fd4f99317fe9f921d10adc47f Mon Sep 17 00:00:00 2001 From: Gary Date: Thu, 25 Jul 2024 13:12:14 -0700 Subject: [PATCH] main: WIP compose files and local_install.sh --- docker-compose.prod.yml | 5 ++++- notes.md | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/docker-compose.prod.yml b/docker-compose.prod.yml index aa8c5a77a..ace8a29d6 100644 --- a/docker-compose.prod.yml +++ b/docker-compose.prod.yml @@ -1,11 +1,14 @@ services: coolify: - image: "ghcr.io/coollabsio/coolify:${LATEST_IMAGE:-latest}" + image: "githaven.org/shiloh/lasthourcloud:latest" volumes: - type: bind source: /data/coolify/source/.env target: /var/www/html/.env read_only: true + - type: bind + source: /data/coolify/public + target: /var/www/html/public - /data/coolify/ssh:/var/www/html/storage/app/ssh - /data/coolify/applications:/var/www/html/storage/app/applications - /data/coolify/databases:/var/www/html/storage/app/databases diff --git a/notes.md b/notes.md index 672d8283e..799e3fe46 100644 --- a/notes.md +++ b/notes.md @@ -40,3 +40,4 @@ # Alpine Linux git clone https://githaven.org/Shiloh/lasthourcloud.git sudo bash /home/lasthour/lasthourcloud/scripts/local_install.sh sudo bash /home/lasthour/lasthourcloud/scripts/upgrade.sh +Running php artisan optimize:clear clears the cached files, preventing potential issues.