mirror of
https://github.com/wazuh/wazuh-docker.git
synced 2025-11-02 13:03:20 +00:00
15 lines
329 B
YAML
15 lines
329 B
YAML
name: Wazuh Docker pipeline
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build-stack:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v2
|
|
- name: Build the docker-compose stack
|
|
run: docker-compose -f build-from-sources.yml up -d --build
|
|
- name: Check running containers
|
|
run: docker ps -a
|