File: docker-compose.yml

package info (click to toggle)
checksec 2.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 10,936 kB
  • sloc: sh: 1,882; makefile: 2
file content (22 lines) | stat: -rw-r--r-- 441 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
version: '2'

services:
  checksec-ubuntu:
    build:
      context: ./
      dockerfile: Dockerfile.ubuntu
    image: checksec-ubuntu
    command: bash -c "./tests/test-checksec.sh"

  checksec-photon:
    build:
      context: ./
      dockerfile: Dockerfile.photon
    image: checksec-photon
    command: bash -c "./tests/test-checksec.sh"

  shellcheck:
    volumes:
      - .:/mnt
    image: koalaman/shellcheck
    command: "checksec"