1
0
Fork 0
Apache2 ITK MPM Docker container
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Pim van den Berg b46679328d
continuous-integration/drone/push Build was killed Details
fix(rebuild): the input device is not a TTY
7 months ago
.drone.yml init 8 months ago
Dockerfile fix healthcheck 8 months ago
README.md init 8 months ago
build.sh init 8 months ago
rebuild.sh fix(rebuild): the input device is not a TTY 7 months ago

README.md

Apache2 ITK MPM Docker container

  • Debian slim based image
  • Apache 2 + ITK MPM

Supported tags and respective Dockerfile links

Usage

Environment variables

Key Format Description

docker run

$ docker run -it \
    --name apache2-itk \
    -p 8080:80 \
    --cap-add=SYS_NICE \
    --cap-add=DAC_READ_SEARCH \
    pommib/apache2-itk:latest

docker-compose

version: "3"

services:
  apache2-itk:
    container_name: apache2-itk
    image: pommib/apache2-itk:latest
    cap_add:
    - SYS_NICE
    - DAC_READ_SEARCH
    ports:
    - "8080:80/tcp"