1
0
Fork 0
Apache2 ITK MPM Docker container
Go to file
Pim van den Berg b46679328d
continuous-integration/drone/push Build was killed Details
fix(rebuild): the input device is not a TTY
2022-11-19 17:12:21 +01:00
.drone.yml init 2022-10-21 10:58:16 +02:00
Dockerfile fix healthcheck 2022-10-21 14:44:56 +02:00
README.md init 2022-10-21 10:58:16 +02:00
build.sh init 2022-10-21 10:58:16 +02:00
rebuild.sh fix(rebuild): the input device is not a TTY 2022-11-19 17:12:21 +01:00

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"