Go to file
Jonatan Rek e166932809 Progress Fix Scheduling 2024-08-06 16:57:48 +02:00
app Progress Fix Scheduling 2024-08-06 16:57:48 +02:00
bootstrap Fixes 2024-07-30 18:13:21 +02:00
config Fixes 2024-07-30 18:13:21 +02:00
database Fixes 2024-08-06 16:20:45 +02:00
public Docker 2024-08-06 16:30:02 +02:00
resources Fixes 2024-08-06 16:20:45 +02:00
routes Fixes 2024-08-06 16:20:45 +02:00
storage Progress 2024-07-31 17:04:33 +02:00
tests Initial Commit 2024-07-30 10:44:45 +02:00
.editorconfig Initial Commit 2024-07-30 10:44:45 +02:00
.env.example Initial Commit 2024-07-30 10:44:45 +02:00
.gitattributes Initial Commit 2024-07-30 10:44:45 +02:00
.gitignore Initial Commit 2024-07-30 10:44:45 +02:00
Dockerfile Docker 2024-08-06 16:30:02 +02:00
README.md Example Commands 2024-08-06 16:33:38 +02:00
artisan Initial Commit 2024-07-30 10:44:45 +02:00
composer.json Progress Fix Scheduling 2024-08-06 16:57:48 +02:00
composer.lock Progress Fix Scheduling 2024-08-06 16:57:48 +02:00
package-lock.json Fixes 2024-07-30 18:13:21 +02:00
package.json Fixes 2024-07-30 18:13:21 +02:00
phpunit.xml Initial Commit 2024-07-30 10:44:45 +02:00
start.sh Docker 2024-08-06 16:30:02 +02:00
vite.config.js Fixes 2024-07-30 18:13:21 +02:00

README.md

Maintenance

Docker Build - Powershell (One Line)

$tag = ("0.0.1").Trim(); Remove-Item -Path "./database/database.sqlite" -Force; Remove-Item -Path ".env" -Force; $tag | set-content -path "./public/version.txt" -Force; git reset --hard; git pull origin master; git tag $tag; git push --tags; docker build -t git.steelants.cz/jonatanrek/lar_maintenance:$tag .; docker push git.steelants.cz/jonatanrek/lar_maintenance:$tag; docker build -t git.steelants.cz/jonatanrek/lar_maintenance:latest .; docker push git.steelants.cz/jonatanrek/lar_maintenance:latest

Docker Build - Bash (One Line)

export TAG="0.0.1" && echo "$TAG" > "./public/version.txt" && sudo docker build -t git.steelants.cz/jonatanrek/lar_maintenance:"$TAG" . && sudo docker push git.steelants.cz/jonatanrek/lar_maintenance:"$TAG" && sudo docker build -t git.steelants.cz/jonatanrek/lar_maintenance:latest . && sudo docker push git.steelants.cz/jonatanrek/lar_maintenance:latest