fix configure

This commit is contained in:
Simon Larsen
2023-07-17 16:06:22 +01:00
parent 7f741cec1b
commit a9fc2305eb
2 changed files with 1 additions and 5 deletions

View File

@@ -213,9 +213,5 @@ for directory_name in $(find . -maxdepth 1 -type d) ; do
fi
done
# Convert template to docker-compose.
cp docker-compose.prod.yml docker-compose.yml
# Convert nginx conf template to nginx
cat ./Nginx/default.tpl.conf | gomplate > ./Nginx/default.conf

View File

@@ -53,7 +53,7 @@
"force-build": "sudo docker compose build -f docker-compose.dev.yml --no-cache $npm_config_services",
"force-build-dev": "npm run config-to-dev && npm run force-build",
"kill": "npm run stop",
"prod": "docker compose up -f docker-compose.prod.yml -d",
"prod": "docker compose up -f docker-compose.yml -d",
"dev": "source config.env && sudo docker compose up --remove-orphans -f docker-compose.dev.yml -d $npm_config_services",
"stop": "docker compose down --remove-orphans",
"prune": "docker system prune",