Skip to content

Commit

Permalink
Merge pull request #89 from devkeon/feature/fileprocessing
Browse files Browse the repository at this point in the history
Fix: fix docker-compose file and workflow for nginx
  • Loading branch information
devkeon committed Dec 27, 2023
2 parents db18ddc + c003804 commit 2f09aa0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ide-server-main-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
REPOSITORY: ${{ secrets.AWS_ECR_NAME }}
TAG1: ${{ secrets.AWS_ECR_TAG1 }}
TAG2: ${{ secrets.AWS_ECR_TAG2 }}
TAG3: ${{ secrets.AWS_ECR_TAG3 }}
TEST_DB_URL: ${{ secrets.TEST_DB_URL }}
TEST_DB_USERNAME: ${{ secrets.TEST_DB_USERNAME }}
TEST_DB_PASSWORD: ${{ secrets.TEST_DB_PASSWORD }}
Expand Down
12 changes: 10 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ services:
volumes:
- /var/run/docker.sock:/var/run/docker.sock
ports:
- "80:8080"
- "8080:8080"
environment:
DB_URL: ${DB_URL}
DB_USERNAME: ${DB_USERNAME}
Expand All @@ -32,4 +32,12 @@ services:
dockerfile: Dockerfile
image: ${REGISTRY}/${REPOSITORY}:${TAG2}
ports:
- "9090:8080"
- "9090:8080"

nginx:
build:
context: ./nginx
dockerfile: Dockerfile
image: ${REGISTRY}/${REPOSITORY}:${TAG3}
ports:
- "80:80"

0 comments on commit 2f09aa0

Please sign in to comment.