Add docker-compose and MSI installer; fix paths

Add docker-compose.yml to run the website container (binds 127.0.0.1:3000 -> 80). Add BeamMP_Installer.msi to public/installer. Update src/views/Home.vue to use /landing-lq.jpg for the hero image (instead of /src/assets/landing-lq.jpg) and change the installer download link from BeamMP_Installer.zip to BeamMP_Installer.msi.
This commit is contained in:
Starystars67
2026-04-01 22:28:32 +01:00
parent f59b5df887
commit 5295ec664b
3 changed files with 10 additions and 2 deletions

8
docker-compose.yml Normal file
View File

@@ -0,0 +1,8 @@
services:
website:
build:
dockerfile: Dockerfile
container_name: website
restart: unless-stopped
ports:
- "127.0.0.1:3000:80"