Initial commit
This commit is contained in:
commit
960e9e0ff8
20 changed files with 877 additions and 0 deletions
11
docker-compose.yaml
Normal file
11
docker-compose.yaml
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue