add some basic initialisation

This commit is contained in:
Luca Conte 2025-03-06 14:52:00 +01:00
parent f409fb282b
commit 47f6556b46
3 changed files with 19 additions and 0 deletions

7
docker-compose.yml Normal file
View File

@ -0,0 +1,7 @@
services:
cg1:
image: nginx:alpine
volumes:
- ./src:/usr/share/nginx/html:ro
ports:
- "8080:80"

12
src/index.html Normal file
View File

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>CG1 MDI</title>
<script src="script.js" defer></script>
</head>
<body>
<canvas id="cv" width="800" height="600"></canvas>
</body>
</html>

0
src/script.js Normal file
View File