README.md
Start with this recipe
Bootstrap: docker
From:httpd:2.4.37
%startscript
httpd-foreground
Build the container:
$ sudo singularity build apache.sif Singularity
Next, make a logs directory to bind to the host:
$ mkdir -p logs
And start the instance and bind the folder for logs.
sudo singularity instance start --bind /tmp/logs:/usr/local/apache2/logs --net --network-args "portmap=80:80/tcp" apache.sif apache