5 lines
128 B
Bash
5 lines
128 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
rm ./nginx/nginx.conf.template
|
||
|
cp ./nginx/nginx.conf ./nginx/nginx.conf.template
|
||
|
docker compose up --build -d nginx
|