We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9e2eab commit 2f2a45fCopy full SHA for 2f2a45f
2 files changed
bin/build_github.sh
@@ -17,6 +17,7 @@ export API_BUILD_CONTEXT="https://${GH_TOKEN}@${API_REPO_URL}#${API_REF}"
17
export BACKEND_BUILD_CONTEXT="https://${GH_TOKEN}@${BACKEND_REPO_URL}#${BACKEND_REF}"
18
19
# Create temporary container to copy nginx config
20
+# This is done because CircleCi doesn't play well with nginx like that.
21
docker volume create project_nginx_conf
22
docker container create --name nginx_tmp -v project_nginx_conf:/etc/nginx/conf.d alpine
23
docker cp nginx/default.conf nginx_tmp:/etc/nginx/conf.d/
bin/up_local.sh
@@ -1,2 +1,2 @@
1
#!/bin/bash
2
-docker-compose --profile core -f docker-compose.local.yaml up --build -d
+docker-compose --profile core -f docker-compose.local.yaml up --build
0 commit comments