Initial setup: Web hosting default container with auto-landing page
All checks were successful
WHP Default Container / Build-and-Push (push) Successful in 11s

- Added Dockerfile with Apache base image
- Created beautiful web hosting landing page (index.html)
- Added startup script to check for content and copy default page
- Set up Gitea workflow for automatic builds
- Updated README with comprehensive documentation

The container automatically provides a professional landing page when the web directory is empty, focusing on web hosting features and guiding users to configure their site through the Web Hosting Panel.
This commit is contained in:
2025-07-12 11:03:43 -07:00
parent 1660f54316
commit eaeb64c3ed
5 changed files with 577 additions and 0 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM httpd:alpine
# Copy the default landing page to the container
COPY index.html /index.html
# Copy the startup script
COPY scripts/startup.sh /startup.sh
# Make the startup script executable
RUN chmod +x /startup.sh
# Set the startup script as the entrypoint
ENTRYPOINT ["/startup.sh"]