Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unable to run application, no clear error #438

Open
faridrb opened this issue May 27, 2024 · 1 comment
Open

Unable to run application, no clear error #438

faridrb opened this issue May 27, 2024 · 1 comment

Comments

@faridrb
Copy link

faridrb commented May 27, 2024

When I try to run using make dev-start-application, the application just stops immediately with the following logs:

Running migrations for accent…
** (EXIT from #PID<0.98.0>) shutdown

How do I resolve this issue?

Tried this both on an ARM MacBook Pro as on an AWS x86 EC2 instance, same issue.

@JulioFerrero
Copy link

JulioFerrero commented Jun 4, 2024

Same issue here! m1 pro in my case

edit:
Fixed by changing the docker-compose.yml with de DB password as follows:

version: '3.7'
services:
application:
container_name: accent
build: .
ports:
- 4000:4000
depends_on:
- postgresql
environment:
- PORT=4000
- DATABASE_URL=postgres://postgres:password@postgresql:5432/accent_development
- DUMMY_LOGIN_ENABLED=1
postgresql:
image: postgres:15.6
container_name: accent-postgres
environment:
- POSTGRES_DB=accent_development
- POSTGRES_PASSWORD=password
ports:
- 5432:5432
volumes:
- accent_psql:/var/lib/postgresql/data
volumes:
accent_psql:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants