!83 update readme

* update readme
This commit is contained in:
inrgihc
2022-03-06 03:54:26 +00:00
parent ad988f10e1
commit 58b7639924
2 changed files with 4 additions and 1 deletions

View File

@@ -216,7 +216,7 @@ jdbc驱动名称 org.mariadb.jdbc.Driver
**oracle的驱动配置样例**
```
jdbc连接地址jdbc:oracle:thin:@172.17.2.10:1521:ORCL
jdbc连接地址jdbc:oracle:thin:@172.17.2.10:1521:ORCL 或 jdbc:oracle:thin:@//172.17.2.10:1521/ORCL
jdbc驱动名称oracle.jdbc.driver.OracleDriver
```

View File

@@ -3,6 +3,9 @@ FROM openjdk:8-jre-alpine
ENV TZ=Asia/Shanghai
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
ENV TZ=Asia/Shanghai
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
ADD dbswitch-release.tar.gz /
EXPOSE 9088