mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-11-23 15:38:55 +01:00
Use a different name for the production-config containers
This commit is contained in:
parent
ba633c4015
commit
36d200580b
2 changed files with 3 additions and 3 deletions
2
.github/workflows/dockerize_dev.yml
vendored
2
.github/workflows/dockerize_dev.yml
vendored
|
@ -38,6 +38,6 @@ jobs:
|
|||
file: prod.Dockerfile
|
||||
platforms: linux/amd64
|
||||
push: true
|
||||
tags: ghcr.io/${{ github.repository }}:${{ env.DOCKER_IMAGE_TAG }}
|
||||
tags: ghcr.io/${{ github.repository }}-cloud:${{ env.DOCKER_IMAGE_TAG }}
|
||||
build-args: |
|
||||
PORT=42110
|
||||
|
|
4
.github/workflows/dockerize_production.yml
vendored
4
.github/workflows/dockerize_production.yml
vendored
|
@ -15,7 +15,7 @@ on:
|
|||
workflow_dispatch:
|
||||
|
||||
env:
|
||||
DOCKER_IMAGE_TAG: 'prod'
|
||||
DOCKER_IMAGE_TAG: ${{ github.ref == 'refs/heads/master' && 'latest' || github.ref_name }}
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
@ -42,6 +42,6 @@ jobs:
|
|||
file: prod.Dockerfile
|
||||
platforms: linux/amd64
|
||||
push: true
|
||||
tags: ghcr.io/${{ github.repository }}:${{ env.DOCKER_IMAGE_TAG }}
|
||||
tags: ghcr.io/${{ github.repository }}-cloud:${{ env.DOCKER_IMAGE_TAG }}
|
||||
build-args: |
|
||||
PORT=42110
|
||||
|
|
Loading…
Reference in a new issue