mirror of
https://github.com/SirBlobby/Hoya26.git
synced 2026-02-03 19:24:34 -05:00
Inital Commit
This commit is contained in:
17
docker-compose.yml
Normal file
17
docker-compose.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
# The Flask Backend
|
||||
api:
|
||||
build: ./backend # Path to your Dockerfile
|
||||
container_name: flask_api
|
||||
restart: always
|
||||
ports:
|
||||
- "5000:5000" # Maps VM Port 5000 -> Container Port 5000
|
||||
environment:
|
||||
- SECRET_KEY=your_secret_key_here
|
||||
# Add database URLs here later
|
||||
|
||||
# (Optional) Add a database or cache here easily later
|
||||
# redis:
|
||||
# image: redis:alpine
|
||||
Reference in New Issue
Block a user