Initial commit

This commit is contained in:
Devon Campbell 2025-10-19 15:33:51 -04:00
commit 960e9e0ff8
20 changed files with 877 additions and 0 deletions

11
docker-compose.yaml Normal file
View file

@ -0,0 +1,11 @@
services:
workout-app:
build: .
container_name: workout-app
ports:
- "8080:80" # Access the app at http://<your-server-ip>:8080
restart: unless-stopped
volumes:
# This is optional. If you want to edit files live without rebuilding,
# you can mount the public directory. For production, it's better to build the image.
# - ./public:/usr/share/nginx/html:ro