Skip to content

Commit

Permalink
fix image name
Browse files Browse the repository at this point in the history
  • Loading branch information
omarciovsena committed May 17, 2024
1 parent ccd7bb5 commit 181b5f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Save and transfer API image to DigitalOcean
run: |
set -e
IMAGE_API_ID=$(docker images -q abibliadigital:latest)
IMAGE_API_ID=$(docker images -q abibliadigital-api:latest)
echo "API Image ID: $IMAGE_API_ID"
if [ -z "$IMAGE_API_ID" ]; then
echo "API image not found!"
Expand Down
2 changes: 2 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
abibliadigital:
build: ./docker-api
command: [ "bash", "/usr/src/api/start.sh" ]
image: abibliadigital-api:latest
ports:
- "3000:3000"
expose:
Expand All @@ -23,6 +24,7 @@ services:
abibliadigital-mongo:
build: ./docker-mongo
container_name: abibliadigital-mongo
image: abibliadigital-mongo:latest
ports:
- "27017:27017"
expose:
Expand Down

0 comments on commit 181b5f4

Please sign in to comment.