Add Docker and Coolify deployment setup

Add the container configuration, environment templates, and storage settings needed to deploy SPOTA with Docker and Coolify.
This commit is contained in:
Power BI Dev
2026-05-02 10:07:56 +07:00
commit 874dbbe8e8
12 changed files with 407 additions and 0 deletions

13
docker/apache-vhost.conf Normal file
View File

@@ -0,0 +1,13 @@
<VirtualHost *:80>
ServerName localhost
DocumentRoot /var/www/html
<Directory /var/www/html>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>