Ventz Petkov

Results 62 comments of Ventz Petkov

@dspruell If it doesn't break things. Things have been a bit "in limbo" from our side since covid in terms of teams/people available. My plan is to re-build this whole...

@fbruzzaniti I am going to re-do the module setup completely. I've been holding off because I am most likely going to port to Ubuntu 20.04 LTS first and re-create the...

@paupaulaz This would be done via the following build variables: ``` POSTFIX_RELAY_HOST MISP_FQDN MISP_EMAIL ```

@adv4000 No, but it should be pretty easy for you add it: Essentially modifying the `init-db` to include "host": https://github.com/harvard-itsecurity/docker-misp/blob/d954df2b201e87eb8ab806128bf0f183d3a2e28f/container/Dockerfile#L150 And then adding a host like this: https://github.com/harvard-itsecurity/docker-misp/blob/d954df2b201e87eb8ab806128bf0f183d3a2e28f/container/Dockerfile#L137 and here:...

@amagana3 The problem is you are modifying the "base os" of the runner with that. Here is my solution to this bug, until it is fixed upstream -- "pipe" the...

Here is a much smaller and quicker version via alpine: ``` on: push: branches: - master pull_request: jobs: some-job: name: some-job-name runs-on: ubuntu-latest container: alpine:latest steps: - name: Obtain Latest...

@mrowles Alpine doesn't have bash by default - it uses `ash` (the almquist shell) If you need bash, you can just add it as a package to the pre-checkout line....

@mrowles Yes. My suggestion is to keep it all wrapped into nice clean containers that you own, and then just call them either directly, or with custom actions. It makes...

Same use case as @mikeytag -- need to add OpenVPN as a service.

@giedriusramas Could you please open PR against: https://github.com/harvard-itsecurity/docker-misp/ This repo here is just a read-only clone copy of that repo. All of the development is done there. Also, could you...