regex catastrophic backtracking fix + background job update db

This commit is contained in:
2024-01-31 21:56:16 +01:00
parent 3b6e66c886
commit c7a4bc711d
8 changed files with 103 additions and 54 deletions

View File

@ -1,8 +1,10 @@
podman build --tag alipricetrack:1.0.0 -f ./Dockerfile
podman build --tag alipricetrack_cron:1.0.0 -f ./CronDockerfile
podman pod create --name aliexpress -p 8086:8080
podman run -d --pod=aliexpress -e POSTGRES_DB="aliexpress" -e POSTGRES_USER="postgres" -e POSTGRES_PASSWORD="postgres" -v /home/data/podman/aliexpress/db:/var/lib/postgresql/data:Z --name ali-db docker.io/postgres
podman run -d --pod=aliexpress -e POSTGRES_DB="aliexpress" -e POSTGRES_USER="postgres" -e POSTGRES_PASSWORD="postgres" --name ali-app alipricetrack:1.0.0
podman run -d --pod=aliexpress --name ali-cron alipricetrack_cron:1.0.0