Skip to content

Commit

Permalink
[BUGFIX] Fixed docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
MathisBurger committed Apr 9, 2024
1 parent 6527a01 commit 301d4f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ ENV DATABASE_URL=jdbc:postgresql://localhost:5432/immowealth
ENV ORM_GENERATION=drop-and-create

EXPOSE 8080
CMD ["java", "-Dquarkus.datasource.username=$DATABASE_USER", "-Dquarkus.datasource.password=$DATABASE_PASSWORD", "-Dquarkus.datasource.jdbc.url=$DATABASE_URL", "-Dquarkus.hibernate-orm.database.generation=$ORM_GENERATION", "-jar", "server.jar"]
CMD ["java", "-Dquarkus.datasource.username=${DATABASE_USER}", "-Dquarkus.datasource.password=${DATABASE_PASSWORD}", "-Dquarkus.datasource.jdbc.url=${DATABASE_URL}", "-Dquarkus.hibernate-orm.database.generation=${ORM_GENERATION}", "-jar", "server.jar"]

0 comments on commit 301d4f7

Please sign in to comment.