Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
target: [misp-core, misp-modules, misp-core-slim, misp-modules-slim, misp-guard]
target: [misp-core, misp-modules, misp-core-slim, misp-modules-slim, misp-guard, misp-nginx]

permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-build-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

strategy:
matrix:
target: [misp-core, misp-modules, misp-core-slim, misp-modules-slim, misp-guard]
target: [misp-core, misp-modules, misp-core-slim, misp-modules-slim, misp-guard, misp-nginx]

steps:
- name: Checkout repository
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
env.hcl
rootca.crt
cert.pem
key.pem
docker-compose.override.yml
.DS_Store
.AppleDouble
Expand Down
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
.DEFAULT_GOAL := help

.PHONY: help build build-core build-modules build-guard build-slim bake up down logs shellcheck clean prune
.PHONY: help build build-core build-nginx build-modules build-guard build-slim bake up down logs shellcheck clean prune

help:
@echo "Usage: make <target>"
@echo ""
@echo "Build targets:"
@echo " build Build all images via docker compose"
@echo " build-core Build misp-core only"
@echo " build-nginx Build misp-nginx only"
@echo " build-modules Build misp-modules only"
@echo " build-guard Build misp-guard only"
@echo " build-slim Build all slim variant images"
Expand All @@ -29,6 +30,9 @@ build:
build-core:
docker compose build misp-core

build-nginx:
docker compose build misp-nginx

build-modules:
docker compose build misp-modules

Expand All @@ -51,7 +55,7 @@ logs:
docker compose logs -f

shellcheck:
shellcheck core/files/*.sh core/files/kubernetes/*.sh guard/files/*.sh
shellcheck core/files/*.sh core/files/kubernetes/*.sh nginx/files/*.sh guard/files/*.sh

clean:
docker compose down -v --remove-orphans
Expand Down
Loading