Add CI for Hub, Store and overall integration #25

Merged
Vladislav merged 5 commits from project/shmuliar-SCRUM-105-add-ci-cd into dev 2026-03-23 21:52:38 +02:00
Showing only changes of commit 2846130e4e - Show all commits

View File

@@ -0,0 +1,16 @@
name: Reset docker state
on: workflow_dispatch
jobs:
reset:
runs-on: host-arch-x86_64
name: Reset docker state
steps:
- name: Stop all containers
run: docker stop $(docker ps -a | cut -d " " -f 1 | tail -n +2)
- name: Remove all containers
run: docker rm $(docker ps -a | cut -d " " -f 1 | tail -n +2)
- name: Remove extra volumes
run: docker volume rm road_vision_postgres_data road_vision_pgadmin-data