diff --git a/.github/workflows/deploy-docker-to-tst.yml b/.github/workflows/deploy-docker-to-tst.yml index 70cc0aa..3ab9bce 100644 --- a/.github/workflows/deploy-docker-to-tst.yml +++ b/.github/workflows/deploy-docker-to-tst.yml @@ -72,14 +72,14 @@ jobs: echo "Gekozen versie: $VERSION-SNAPSHOT" # Stop en verwijder de huidige container - docker stop paypoint || true - docker rm paypoint || true + docker stop paypoint-frontend || true + docker rm paypoint-frontend || true # Haal de nieuwste image binnen docker pull veenm/paypoint:$VERSION-SNAPSHOT # Start een nieuwe container - docker run -d --name paypoint --restart unless-stopped -p 15001:80 veenm/paypoint:$VERSION-SNAPSHOT + docker run -d --name paypoint-frontend --restart unless-stopped -p 15000:80 veenm/paypoint:$VERSION-SNAPSHOT # Opruimen oude images docker image prune -f