Skip to content

Commit

Permalink
What if the ECR does not yet exist?
Browse files Browse the repository at this point in the history
  • Loading branch information
nutjob4life committed Jan 8, 2025
1 parent b3e686e commit 97f8743
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/drupal.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ on:
# What to do.

jobs:
solr-image:
drupal-image:
name: 🥀 Drupal Image
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
file: drupal/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: ${{secrets.AWS_ACCOUNT_ID}}.dkr.ecr.us-west-2.amazonaws.com/solr-portal:latest
tags: ${{secrets.AWS_ACCOUNT_ID}}.dkr.ecr.us-west-2.amazonaws.com/drupal-portal:latest

...

Expand Down
2 changes: 1 addition & 1 deletion drupal/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

@app.route('/')
def index():
return Response('<p>Okay, this from Flask, 🌍</p>', mimetype='text/html')
return Response('<p>Okay, this from Flask, from a Docker container allegedly 🌍</p>', mimetype='text/html')
# solr_url = 'http://solr.drupalservices.local:8983/solr/'

# try:
Expand Down

0 comments on commit 97f8743

Please sign in to comment.