Skip to content

Commit

Permalink
update docker-compose-dev.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
im-niber committed Aug 19, 2024
1 parent f484b2b commit 2a2f8a6
Showing 2 changed files with 5 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -33,16 +33,16 @@ jobs:
file: ./Dockerfile
push: true
tags: |
${{ secrets.NCP_CONTAINER_REGISTRY }}/customk:${{ github.run_number }}
${{ secrets.NCP_CONTAINER_REGISTRY }}/customk:latest
cache-from: type=registry,ref=${{ secrets.NCP_CONTAINER_REGISTRY }}/customk:latest
${{ secrets.NCP_CONTAINER_REGISTRY }}/customk-app:${{ github.run_number }}
${{ secrets.NCP_CONTAINER_REGISTRY }}/customk-app:latest
cache-from: type=registry,ref=${{ secrets.NCP_CONTAINER_REGISTRY }}/customk-app:latest
cache-to: type=inline

- name: Build and push nginx image
uses: docker/build-push-action@v3
with:
context: .
file: ./nginx/Dockerfile
context: ./nginx
file: ./Dockerfile
push: true
tags: |
${{ secrets.NCP_CONTAINER_REGISTRY }}/customk-nginx:${{ github.run_number }}
1 change: 0 additions & 1 deletion docker-compose-dev.yml
Original file line number Diff line number Diff line change
@@ -24,7 +24,6 @@ services:
ports:
- "80:80"
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
- static-data:/vol/web
depends_on:
- app

0 comments on commit 2a2f8a6

Please sign in to comment.