Skip to content

Commit

Permalink
Merge pull request #75 from protocolpaladin/main
Browse files Browse the repository at this point in the history
Docker compose production ready
  • Loading branch information
dbarzin authored Mar 15, 2024
2 parents af59575 + be346ef commit 53838c2
Show file tree
Hide file tree
Showing 7 changed files with 97 additions and 8 deletions.
5 changes: 5 additions & 0 deletions Dockerfile_web
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ WORKDIR /var/www/deming

RUN git clone https://www.github.com/dbarzin/deming .
RUN cp deming.conf /etc/nginx/conf.d/default.conf
COPY userdemo.sh /etc/userdemo.sh
COPY resetdb.sh /etc/resetdb.sh
COPY uploadiso27001db.sh /etc/uploadiso27001db.sh
COPY initialdb.sh /etc/initialdb.sh
RUN chmod +x /etc/*.sh
RUN mkdir -p storage/framework/views && mkdir -p storage/framework/cache && mkdir -p storage/framework/sessions && mkdir -p bootstrap/cache
RUN chmod -R 775 /var/www/deming/storage && chown -R www-data:www-data /var/www/deming
RUN composer install
Expand Down
19 changes: 16 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,20 @@ services:
build:
context: .
dockerfile: Dockerfile_web
environment:
### PLEASE DISABLE FOR PRODUCTION
- USE_DEMO_DATA=1
### PLEASE DISABLE FOR PRODUCTION
#- RESET_DB=EN #EN OR FR
### PLEASE AFTER ONE RUN DISABLE FOR OPTIMIZATION
- UPLOAD_DB_ISO27001=FR #EN OR FR
### PLEASE AFTER ONE RUN DISABLE FOR OPTIMIZATION
- INITIAL_DB=FR #EN OR FR
ports:
- 80:80
depends_on:
- "mysql":
mysql:
condition: service_healthy

mysql:
image: mysql:8
environment:
Expand All @@ -23,4 +31,9 @@ services:
test: ["CMD", "mysqladmin", "ping", "-h", "localhost", "-u", "root", "-p$${MYSQL_ROOT_PASSWORD}"]
interval: 10s
timeout: 5s
retries: 3
retries: 3
### PLEASE ENABLE FOR PERSISTENT DATABASE DATA
volumes:
- dbdata:/var/lib/mysql
volumes:
dbdata:
9 changes: 4 additions & 5 deletions entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
#!/usr/bin/env bash

cd /var/www/deming
php artisan migrate:fresh --seed
bash /etc/resetdb.sh
bash /etc/initialdb.sh
php artisan key:generate
php artisan storage:link
php artisan db:seed --class=AttributeSeeder
php artisan db:seed --class=DomainSeeder
php artisan db:seed --class=MeasureSeeder
php artisan deming:generateTests
bash /etc/uploadiso27001db.sh
bash /etc/userdemo.sh
php artisan passport:install
php artisan serve --host 0.0.0.0 --port 8000 &

Expand Down
19 changes: 19 additions & 0 deletions initialdb.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#!/bin/bash

# Vérifie si la variable d'environnement est égale à 1
if [ "${INITIAL_DB}" = "EN" ]; then
# Se déplace vers le répertoire /var/www/deming/
cd /var/www/deming/
# Exécute la commande
php artisan migrate --seed
# Exit avec le code 0 pour indiquer que le script s'est terminé avec succès
exit 0
fi
if [ "${INITIAL_DB}" = "FR" ]; then
# Se déplace vers le répertoire /var/www/deming/
cd /var/www/deming/
# Exécute la commande
LANG=fr php artisan migrate --seed
# Exit avec le code 0 pour indiquer que le script s'est terminé avec succès
exit 0
fi
19 changes: 19 additions & 0 deletions resetdb.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#!/bin/bash

# Vérifie si la variable d'environnement est égale à 1
if [ "${RESET_DB}" = "EN" ]; then
# Se déplace vers le répertoire /var/www/deming/
cd /var/www/deming/
# Exécute la commande
php artisan migrate:fresh --seed
# Exit avec le code 0 pour indiquer que le script s'est terminé avec succès
exit 0
fi
if [ "${RESET_DB}" = "FR" ]; then
# Se déplace vers le répertoire /var/www/deming/
cd /var/www/deming/
# Exécute la commande
LANG=fr php artisan migrate:fresh --seed
# Exit avec le code 0 pour indiquer que le script s'est terminé avec succès
exit 0
fi
23 changes: 23 additions & 0 deletions uploadiso27001db.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!/bin/bash

# Vérifie si la variable d'environnement est égale à 1
if [ "${UPLOAD_DB_ISO27001}" = "EN" ]; then
# Se déplace vers le répertoire /var/www/deming/
cd /var/www/deming/
# Exécute la commande
php artisan db:seed --class=AttributeSeeder
php artisan db:seed --class=DomainSeeder
php artisan db:seed --class=MeasureSeeder
# Exit avec le code 0 pour indiquer que le script s'est terminé avec succès
exit 0
fi
if [ "${UPLOAD_DB_ISO27001}" = "FR" ]; then
# Se déplace vers le répertoire /var/www/deming/
cd /var/www/deming/
# Exécute la commande
LANG=fr php artisan db:seed --class=AttributeSeeder
LANG=fr php artisan db:seed --class=DomainSeeder
LANG=fr php artisan db:seed --class=MeasureSeeder
# Exit avec le code 0 pour indiquer que le script s'est terminé avec succès
exit 0
fi
11 changes: 11 additions & 0 deletions userdemo.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash

# Vérifie si la variable d'environnement USE_DEMO_DATA est égale à 1
if [ "${USE_DEMO_DATA}" = "1" ]; then
# Se déplace vers le répertoire /var/www/deming/
cd /var/www/deming/
# Exécute la commande "php artisan deming:generateTests"
php artisan deming:generateTests
# Exit avec le code 0 pour indiquer que le script s'est terminé avec succès
exit 0
fi

0 comments on commit 53838c2

Please sign in to comment.