diff --git a/.github/workflows/deploy_compose.yml b/.github/workflows/deploy_compose.yml index f1e7cba..20f76a5 100644 --- a/.github/workflows/deploy_compose.yml +++ b/.github/workflows/deploy_compose.yml @@ -33,6 +33,10 @@ on: required: false type: string default: 'up -d' + docker_prune: + required: false + type: string + default: 'false' pull_images_first: required: false type: string @@ -89,6 +93,7 @@ jobs: stack_file_name: ${{ inputs.stack_file_name }} env_file_name: ${{ inputs.env_file_name }} args: ${{ inputs.args }} + docker_prune: ${{ inputs.docker_prune }} pull_images_first: ${{ inputs.pull_images_first }} docker_registry_uri: ${{ secrets.REGISTRY_HOST }} docker_registry_username: ${{ secrets.REGISTRY_USERNAME }} @@ -106,6 +111,7 @@ jobs: stack_file_name: ${{ inputs.stack_file_name }} env_file_name: ${{ inputs.env_file_name }} args: ${{ inputs.args }} + docker_prune: ${{ inputs.docker_prune }} pull_images_first: ${{ inputs.pull_images_first }} docker_registry_uri: ${{ secrets.REGISTRY_HOST }} docker_registry_username: ${{ secrets.REGISTRY_USERNAME }}