Skip to content

Commit

Permalink
remove container name
Browse files Browse the repository at this point in the history
alexeh committed May 23, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent e631378 commit 6feaf52
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -174,13 +174,11 @@ jobs:
echo "services:" >> docker-compose.yml
echo " client:" >> docker-compose.yml
echo " image: $ECR_REGISTRY/$ECR_REPOSITORY_CLIENT:$IMAGE_TAG" >> docker-compose.yml
echo " container_name: client >> docker-compose.yml
echo " restart: always" >> docker-compose.yml
echo " ports:" >> docker-compose.yml
echo " - 3000:3000" >> docker-compose.yml
echo " api:" >> docker-compose.yml
echo " image: $ECR_REGISTRY/$ECR_REPOSITORY_API:$IMAGE_TAG" >> docker-compose.yml
echo " container_name: api >> docker-compose.yml
echo " restart: always" >> docker-compose.yml
echo " ports:" >> docker-compose.yml
echo " - 4000:4000" >> docker-compose.yml
2 changes: 1 addition & 1 deletion infrastructure/source_bundle/proxy/conf.d/application.conf
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ upstream client {
}

server {
listen 80;
listen 80;

location / {
proxy_pass http://client;

0 comments on commit 6feaf52

Please sign in to comment.