Add database port to docker env, and fix jwt command

This commit is contained in:
Julien Nahum 2023-03-23 14:46:36 +01:00
parent 62fcfc8f19
commit 37965f33cd
2 changed files with 2 additions and 1 deletions

View File

@ -6,3 +6,4 @@ DB_HOST="database"
DB_DATABASE="postgres"
DB_USERNAME="postgres"
DB_PASSWORD="postgres"
DB_PORT=5432

View File

@ -30,7 +30,7 @@ logs:
touch $@
.make.jwt-secret:
docker compose run --rm php-cli artisan jwt:secret --f
docker compose run --rm php-cli artisan jwt:secret --force
touch $@
.make.migrate: