Mobile UX fixes

This commit is contained in:
Eric Gullickson
2025-12-17 21:46:44 -06:00
parent b611b56336
commit c13e17f0eb
14 changed files with 671 additions and 99 deletions

22
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,22 @@
stages:
- deploy
deploy_prod:
stage: deploy
only:
- main
script:
- echo ">>> Pulling latest code"
- git pull origin main
- echo ">>> Pulling updated images"
- docker compose pull
- echo ">>> Rebuilding local images if needed"
- docker compose build
- echo ">>> Starting/Updating services"
- docker compose up -d
- echo ">>> Removing old containers"
- docker image prune -f