Skip to content

Commit

Permalink
feat(ci/cd): add docker-compose file
Browse files Browse the repository at this point in the history
  • Loading branch information
Mihoub2 committed Apr 23, 2024
1 parent 325f5ad commit 611a5d9
Show file tree
Hide file tree
Showing 4 changed files with 741 additions and 105 deletions.
74 changes: 74 additions & 0 deletions .github/workflows/staging.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
name: Build and deploy staging

on:
push:
branches:
- staging

env:
DEPLOYMENT: ticket-office
DEPLOYMENT_NAMESPACE: ticket
DEPLOYMENT_URL: https://ticket-office.staging.dataesr.ovh
MM_NOTIFICATION_CHANNEL: bots

jobs:
publish-ghcr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18

- name: 🪚 Build app
run: |
cd client
npm ci
npm run build -- --mode staging
- name: 🏷️ Get tag
id: tag
run: echo "tag=${GITHUB_REF#refs/heads/}" >> $GITHUB_OUTPUT

- name: 🔑 Login Docker
run: docker login ghcr.io -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }}

- name: 🐳 Build Docker image
run: |
cd client
IMAGE_ID=ghcr.io/${{ github.repository }}
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
docker build -f Dockerfile -t $IMAGE_ID:${{ steps.tag.outputs.tag }} .
- name: 📦 Push Docker image
run: |
IMAGE_ID=ghcr.io/${{ github.repository }}
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
docker push --all-tags $IMAGE_ID
deploy:
name: 💭 Update staging deployment
runs-on: ubuntu-latest
needs: publish-ghcr
steps:
- name: Deploy to Cluster
id: kubectl-deploy
uses: dataesr/[email protected]
env:
KUBE_CONFIG: ${{ secrets.KUBE_CONFIG_DOAD_STAGING }}
with:
namespace: ${{ env.DEPLOYMENT_NAMESPACE }}
restart: ${{ env.DEPLOYMENT }}

notify:
name: 📢 Notify in mattermost channel
needs: deploy
if: always()
runs-on: ubuntu-latest
steps:
- uses: dataesr/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN}}
mattermost_webhook_url: ${{ secrets.MATTERMOST_WEBHOOK_URL }}
mattermost_channel: ${{ env.MM_NOTIFICATION_CHANNEL}}
deployment_url: ${{ env.DEPLOYMENT_URL }}
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ RUN npm run build
EXPOSE 5173

CMD [ "npm", "run", "preview" ]

15 changes: 15 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
version: "3.8"

services:
app:
image: node:18-alpine
working_dir: /app
volumes:
- .:/app
ports:
- "3000:3000"
environment:
- NODE_ENV=staging
- VITE_SCANR_API_AUTORIZATION=${VITE_SCANR_API_AUTORIZATION}
- VITE_BREVO_API_AUTHORIZATION=${VITE_BREVO_API_AUTHORIZATION}
command: npm run dev
Loading

0 comments on commit 611a5d9

Please sign in to comment.