mirror of
https://github.com/r-freeman/portfolio.git
synced 2025-06-27 18:50:20 +00:00
All checks were successful
Build And Publish / BuildAndPublish (push) Successful in 1m54s
10 lines
134 B
Bash
Executable File
10 lines
134 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cat > compose.prod.yaml <<EOF
|
|
services:
|
|
portfolio_frontend:
|
|
ports:
|
|
- "${SERVER_IP}:${SERVER_PORT}:3000"
|
|
|
|
EOF
|