-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of ghh3x:h3xitsec/h3xrecon
- Loading branch information
Showing
27 changed files
with
284 additions
and
399 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
name: Build and Push Docker Images | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
workflow_dispatch: | ||
permissions: | ||
packages: write | ||
contents: read | ||
jobs: | ||
build-and-push: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Log in to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Run build script | ||
run: bash build.sh | ||
|
||
- name: Build and push base image | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: ./build/BaseImage | ||
file: ./build/BaseImage/Dockerfile | ||
push: true | ||
tags: ghcr.io/${{ github.repository_owner }}/h3xrecon_base:latest | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
platforms: linux/amd64,linux/arm64 | ||
|
||
- name: Build and push worker image | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: ./build/Worker | ||
file: ./build/Worker/Dockerfile | ||
push: true | ||
tags: ghcr.io/${{ github.repository_owner }}/h3xrecon_worker:latest | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
platforms: linux/amd64,linux/arm64 | ||
|
||
- name: Build and push data processor image | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: ./build/DataProcessor | ||
file: ./build/DataProcessor/Dockerfile | ||
push: true | ||
tags: ghcr.io/${{ github.repository_owner }}/h3xrecon_dataprocessor:latest | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
platforms: linux/amd64 | ||
|
||
- name: Build and push job processor image | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: ./build/JobProcessor | ||
file: ./build/JobProcessor/Dockerfile | ||
push: true | ||
tags: ghcr.io/${{ github.repository_owner }}/h3xrecon_jobprocessor:latest | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
platforms: linux/amd64 | ||
|
||
- name: Build and push logger image | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: ./build/Logger | ||
file: ./build/Logger/Dockerfile | ||
push: true | ||
tags: ghcr.io/${{ github.repository_owner }}/h3xrecon_logger:latest | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
platforms: linux/amd64 | ||
|
||
- name: Build and push nats image | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: ./build/nats | ||
file: ./build/nats/Dockerfile | ||
push: true | ||
tags: ghcr.io/${{ github.repository_owner }}/h3xrecon_nats:latest | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
platforms: linux/amd64 | ||
|
||
- name: Build and push pgsql image | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: ./build/pgsql | ||
file: ./build/pgsql/Dockerfile | ||
push: true | ||
tags: ghcr.io/${{ github.repository_owner }}/h3xrecon_pgsql:latest | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
platforms: linux/amd64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
- name: Start h3xrecon stack | ||
hosts: processor | ||
vars_files: | ||
- vault.yaml | ||
tasks: | ||
- delegate_to: localhost | ||
ansible.builtin.copy: | ||
dest: /tmp/h3xrecon_processor.key | ||
content: "{{ PROCESSOR_PRIVATE_KEY }}" | ||
mode: 0600 | ||
- name: Deploy Docker stack | ||
delegate_to: localhost | ||
community.docker.docker_stack: | ||
state: present | ||
name: h3xrecon | ||
compose: | ||
- ../deploy/docker-compose.yaml | ||
environment: | ||
DOCKER_HOST: ssh://{{ ansible_host }} | ||
- delegate_to: localhost | ||
ansible.builtin.file: | ||
path: /tmp/h3xrecon_processor.key | ||
state: absent |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
- name: Remove h3xrecon stack | ||
hosts: processor | ||
vars_files: | ||
- vault.yaml | ||
tasks: | ||
- delegate_to: localhost | ||
ansible.builtin.copy: | ||
dest: /tmp/h3xrecon_processor.key | ||
content: "{{ PROCESSOR_PRIVATE_KEY }}" | ||
mode: 0600 | ||
- name: Deploy Docker stack | ||
delegate_to: localhost | ||
community.docker.docker_stack: | ||
state: absent | ||
name: h3xrecon | ||
compose: | ||
- ../deploy/docker-compose.yaml | ||
environment: | ||
DOCKER_HOST: ssh://{{ ansible_host }} | ||
- delegate_to: localhost | ||
ansible.builtin.file: | ||
path: /tmp/h3xrecon_processor.key | ||
state: absent |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.