Skip to content

bshp/apache2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

9f41ef3 · Apr 3, 2024

History

68 Commits
Apr 3, 2024
Feb 28, 2024
Jan 26, 2024
Jul 23, 2023
Feb 28, 2024
Jul 23, 2023
Feb 3, 2024

Repository files navigation

Apache Web Server

Designed to be run directly without having to create different dockerfiles for web applications that do not need some type of engine.

If you need either PHP or Tomcat:

PHP: Walrus
Tomcat: Firefly

Base OS:

Ubuntu Server LTS

Packages:

Updated weekly from the official upstream Ubuntu LTS image

apache2 
ca-certificates 
curl 
gnupg 
jq 
libapache2-mod-jk 
openssl 
tzdata 
unzip 
wget

Enabled Mods:

headers 
remoteip 
rewrite 
ssl 
unique_id

Disabled Mods:

info 
jk 
status

Environment Variables:

see Ocie Environment for more info

Direct:

docker run --entrypoint /usr/sbin/ociectl -d bshp/apache2:latest --run

Custom:

Add at end of your entrypoint script either of:

/usr/sbin/ociectl --run;
/usr/sbin/apachectl -k start -D FOREGROUND;

Build:

VERSION = Ubuntu version to build, e.g 22.04, 24.04

docker build . --pull --build-arg VERSION=22.04 --tag YOUR_TAG