Skip to content

Commit

Permalink
add tentacle base image for Octopus Deployment Target or Worker Tenta…
Browse files Browse the repository at this point in the history
…cles
  • Loading branch information
alismx committed Jun 27, 2024
1 parent 955e07f commit 2e1b7d2
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 3 deletions.
14 changes: 12 additions & 2 deletions .github/actions/build-and-push-octopus/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,18 @@ runs:
uses: docker/build-push-action@v5
with:
context: ./octopus
file: ./octopus/dockerfile
file: ./octopus/dockerfile.server
push: true
tags: |
${{ inputs.acr_registry }}/dibbs-cloud/octopusdeploy:${{ env.VERSION }}
${{ inputs.acr_registry }}/dibbs-cloud/octopusdeploy:latest
${{ inputs.acr_registry }}/dibbs-cloud/octopusdeploy:latest
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: ./octopus
file: ./octopus/dockerfile.tentacle
push: true
tags: |
${{ inputs.acr_registry }}/dibbs-cloud/octopusdeploytentacle:${{ env.VERSION }}
${{ inputs.acr_registry }}/dibbs-cloud/octopusdeploytentacle:latest
8 changes: 8 additions & 0 deletions octopus/Dockerfile.tentacle
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM octopusdeploy/tentacle:8.1.1693

ENV ACCEPT_EULA=Y
ENV ListeningPort=""
ENV ServerApiKey=""
ENV TargetEnvironment=""
ENV TargetRoles=""
ENV ServerUrl=""
2 changes: 1 addition & 1 deletion octopus/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.1
0.0.2
File renamed without changes.

0 comments on commit 2e1b7d2

Please sign in to comment.