Compare commits

..
Author SHA1 Message Date
streaper2 e111f76731 ci: fix port container
Deploy Backendia / deploy (push) Successful in 3s
2026-08-26 08:28:21 +02:00
streaper2 5d7d5e6b54 ci: fix node container
Deploy Backendia / deploy (push) Successful in 1m22s
2026-08-26 08:10:16 +02:00
streaper2 bc77462c27 ci: fix
Deploy Backendia / deploy (push) Failing after 1s
2026-08-26 08:09:07 +02:00
streaper2 4437a1f436 ci: changement host docker
Deploy Backendia / deploy (push) Canceled after 0s
2026-08-26 08:05:22 +02:00
2 changed files with 8 additions and 3 deletions
+5 -2
View File
@@ -7,10 +7,13 @@ on:
jobs:
deploy:
runs-on: ubuntu-latest
# Correspond au label 'docker:host' de votre runner
runs-on: docker
steps:
- name: 📥 Récupération du code
uses: actions/checkout@v4
run: |
echo "📥 Récupération du code..."
git clone --depth 1 --branch ${{ github.ref_name }} "https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@git.kevlar.cloud/${{ github.repository }}.git" .
- name: 🚀 Build et Déploiement Docker
run: |
+3 -1
View File
@@ -1,3 +1,5 @@
name: backendia
services:
backendia:
build:
@@ -6,7 +8,7 @@ services:
container_name: backendia-prod
restart: unless-stopped
ports:
- "127.0.0.1:3000:3000"
- "3005:3000"
environment:
- NODE_ENV=production
- PORT=3000