added docker-compose and Docket.dev for github pages

This commit is contained in:
JBB0807 2025-05-26 14:11:12 -07:00
parent 96d3dcbb8c
commit 17644fbbdb
2 changed files with 35 additions and 0 deletions

15
docker-compose.yml Normal file
View file

@ -0,0 +1,15 @@
version: '3.8'
services:
snake_byte_app:
build:
context: .
dockerfile: Dockerfile.dev
container_name: snake_byte_dev_app
ports:
- "5173:5173"
volumes:
- .:/app
- /app/node_modules
environment:
- NODE_ENV=development