Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
K
koko
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
koko
Commits
bbbc3800
Commit
bbbc3800
authored
Aug 28, 2019
by
Eric_Lee
Committed by
Eric
Aug 28, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix docker config from env (#77)
parent
a125e737
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
12 deletions
+4
-12
entrypoint.sh
entrypoint.sh
+0
-8
config.go
pkg/config/config.go
+4
-4
No files found.
entrypoint.sh
View file @
bbbc3800
...
@@ -7,13 +7,5 @@ do
...
@@ -7,13 +7,5 @@ do
sleep
2
sleep
2
done
done
if
[
!
-f
"/opt/coco/config.yml"
]
;
then
cp
/opt/coco/config_example.yml /opt/coco/config.yml
sed
-i
'5d'
/opt/coco/config.yml
sed
-i
"5i CORE_HOST:
$CORE_HOST
"
/opt/coco/config.yml
sed
-i
"s/BOOTSTRAP_TOKEN: <PleasgeChangeSameWithJumpserver>/BOOTSTRAP_TOKEN:
$BOOTSTRAP_TOKEN
/g"
/opt/coco/config.yml
sed
-i
"s/# LOG_LEVEL: INFO/LOG_LEVEL: ERROR/g"
/opt/coco/config.yml
fi
cd
/opt/coco
cd
/opt/coco
./koko
./koko
pkg/config/config.go
View file @
bbbc3800
...
@@ -71,6 +71,7 @@ func (c *Config) LoadFromYAMLPath(filepath string) error {
...
@@ -71,6 +71,7 @@ func (c *Config) LoadFromYAMLPath(filepath string) error {
body
,
err
:=
ioutil
.
ReadFile
(
filepath
)
body
,
err
:=
ioutil
.
ReadFile
(
filepath
)
if
err
!=
nil
{
if
err
!=
nil
{
log
.
Printf
(
"Not found file: %s"
,
filepath
)
log
.
Printf
(
"Not found file: %s"
,
filepath
)
return
err
}
}
return
c
.
LoadFromYAML
(
body
)
return
c
.
LoadFromYAML
(
body
)
}
}
...
@@ -100,12 +101,11 @@ func (c *Config) LoadFromEnv() error {
...
@@ -100,12 +101,11 @@ func (c *Config) LoadFromEnv() error {
}
}
func
(
c
*
Config
)
Load
(
filepath
string
)
error
{
func
(
c
*
Config
)
Load
(
filepath
string
)
error
{
err
:=
c
.
LoadFromYAMLPath
(
filepath
)
if
err
:=
c
.
LoadFromYAMLPath
(
filepath
);
err
==
nil
{
if
err
!=
nil
{
return
err
return
err
}
}
err
=
c
.
LoadFromEnv
(
)
log
.
Print
(
"Load from env"
)
return
err
return
c
.
LoadFromEnv
()
}
}
var
lock
=
new
(
sync
.
RWMutex
)
var
lock
=
new
(
sync
.
RWMutex
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment