Skip to content

Commit

Permalink
Merge pull request #79 from co-cddo/ecs-fixes
Browse files Browse the repository at this point in the history
ECS deployment fixes
  • Loading branch information
prakash-cddo authored May 8, 2024
2 parents 961c4bc + 13ce7ca commit 1801d2f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,7 @@ RUN gem install bundler && \

# Copy the application code
COPY . .

EXPOSE 3000

ENTRYPOINT ["bash", "bin/entrypoint"]
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ services:
- "3000:3000"
depends_on:
- db
entrypoint: ["bash", 'bin/entrypoint']
#entrypoint: ["bash", 'bin/entrypoint']
environment:
<<: *compose_env
AIRTABLE_API_KEY: $AIRTABLE_API_KEY
RAILS_MASTER_KEY: $RAILS_MASTER_KEY
db:
image: postgres:12
image: postgres:13
environment:
<<: *compose_env
POSTGRES_USER: postgres
Expand Down

0 comments on commit 1801d2f

Please sign in to comment.