Skip to content

Commit

Permalink
[NS-66] - Changing to docker deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
Narvane committed Apr 23, 2024
1 parent 258bc34 commit 6108c5f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions app/src/main/resources/application-docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
server:
servlet:
context-path: /my-storage
port: 8081
spring:
messages:
basename: messages
encoding: UTF-8
datasource:
url: jdbc:postgresql://my-storage-db/my-storage
username: ${POSTGRES_USER}
password: ${POSTGRES_PASSWORD}
jpa:
database-platform: org.hibernate.dialect.PostgreSQLDialect
hibernate:
ddl-auto: validate
show-sql: false
flyway:
url: jdbc:postgresql://my-storage-db/my-storage
user: ${POSTGRES_USER}
password: ${POSTGRES_PASSWORD}

0 comments on commit 6108c5f

Please sign in to comment.