-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature: optimize full-text search sync
- Loading branch information
1 parent
ad739d8
commit aaf0608
Showing
87 changed files
with
6,252 additions
and
2,507 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM ccr.ccs.tencentyun.com/bk.io/centos7-cmdb:base | ||
ENV container docker | ||
COPY cmdb_syncserver /data/cmdb/cmdb_syncserver | ||
RUN mkdir /data/cmdb/cmdb_syncserver/logs | ||
RUN chmod +x /data/cmdb/cmdb_syncserver/cmdb_syncserver | ||
#time zone setting | ||
ENV TimeZone=Asia/Shanghai | ||
RUN ln -snf /usr/share/zoneinfo/$TimeZone /etc/localtime && echo $TimeZone > /etc/timezone | ||
|
Oops, something went wrong.