mirror of
https://github.com/r-freeman/portfolio.git
synced 2025-06-27 22:50:21 +00:00
10 lines
126 B
Bash
Executable File
10 lines
126 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cat > compose.prod.yaml <<EOF
|
|
services:
|
|
portfolio_frontend:
|
|
ports:
|
|
- "${SERVER_PORT}:3000:3000"
|
|
|
|
EOF
|