Skip to content

Commit

Permalink
SHIBUI-2273
Browse files Browse the repository at this point in the history
fixes for sqlserver docker
  • Loading branch information
chasegawa committed Jul 12, 2022
1 parent de36cac commit a097971
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 9 deletions.
16 changes: 8 additions & 8 deletions testbed/sqlServer/conf/application.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
spring:
profiles:
include:
include: dev
datasource:
platform: sqlserver
driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver
Expand All @@ -11,13 +11,13 @@ spring:
properties:
hibernate:
dialect: org.hibernate.dialect.SQLServerDialect
#server:
# port: 8443
# ssl:
# key-store: "/conf/keystore.p12"
# key-store-password: "changeit"
# keyStoreType: "PKCS12"
# keyAlias: "tomcat"
server:
port: 8443
ssl:
key-store: "/conf/keystore.p12"
key-store-password: "changeit"
keyStoreType: "PKCS12"
keyAlias: "tomcat"
shibui:
user-bootstrap-resource: file:/conf/users.csv
roles: ROLE_ADMIN,ROLE_NONE,ROLE_USER,ROLE_PONY
Expand Down
9 changes: 8 additions & 1 deletion testbed/sqlServer/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,14 @@ services:
- db
networks:
- front

mailhog:
image: mailhog/mailhog:latest
ports:
- 1025:1025
- 8025:8025
container_name: mailhog
networks:
- front
networks:
front:
driver: bridge

0 comments on commit a097971

Please sign in to comment.