Got a basic calendar editing page going.

This commit is contained in:
2025-07-01 23:02:30 +10:00
parent 7607d807fe
commit f8616ff819
12 changed files with 148 additions and 30 deletions

View File

@@ -1,22 +1,28 @@
services:
web:
app:
image: php:8.2-apache
container_name: homepage
container_name: app
ports:
- "8080:80"
volumes:
- ./web/:/var/www/html:Z
- ./vendor/:/var/www/html/vendor:Z
- ./lib.php:/var/www/html/lib.php:Z
- ./dat.live:/var/www/html/dat:Z
networks:
- labnet
profiles:
- app
cal:
image: php:8.2-apache
container_name: calendar
container_name: cal
ports:
- "8081:80"
- "8080:80"
volumes:
- ./cal/:/var/www/html:Z
- ./vendor/:/var/www/html/vendor:Z
- ./lib.php:/var/www/html/lib.php:Z
- ./dat.live:/var/www/html/dat:Z
networks:
- labnet
profiles: