Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
gitlab-ci-pipeline
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IOPSYS
gitlab-ci-pipeline
Commits
0873d8bf
Commit
0873d8bf
authored
5 years ago
by
Suru Dissanaike
Browse files
Options
Downloads
Patches
Plain Diff
code-analysis:0.3
parent
244cee7e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
docker/code-analysis/Dockerfile
+2
-1
2 additions, 1 deletion
docker/code-analysis/Dockerfile
docker/code-analysis/entrypoint.sh
+1
-1
1 addition, 1 deletion
docker/code-analysis/entrypoint.sh
docker/code-analysis/supervisord.conf
+16
-5
16 additions, 5 deletions
docker/code-analysis/supervisord.conf
with
19 additions
and
7 deletions
docker/code-analysis/Dockerfile
+
2
−
1
View file @
0873d8bf
...
...
@@ -203,7 +203,8 @@ WORKDIR /opt/work
# Prepare supervisor
RUN
mkdir
-p
/var/log/supervisor
COPY
supervisord.conf /etc/supervisor/conf.d/supervisord.conf
RUN
mkdir
-p
/etc/supervisor/conf.d/
COPY
supervisord.conf /etc/supervisor/
# Prepare JSON Schemas
RUN
mkdir
-p
/usr/share/rpcd/schemas
...
...
This diff is collapsed.
Click to expand it.
docker/code-analysis/entrypoint.sh
+
1
−
1
View file @
0873d8bf
...
...
@@ -3,7 +3,7 @@
set
-x
# Start supervisor
/usr/bin/supervisord
-c
/etc/supervisor/
conf.d/
supervisord.conf
-l
/var/log/supervisord.log
-j
/var/run/supervisord.pid
/usr/bin/supervisord
-c
/etc/supervisor/supervisord.conf
#Start bash to enable an interactive session
/bin/bash
This diff is collapsed.
Click to expand it.
docker/code-analysis/supervisord.conf
+
16
−
5
View file @
0873d8bf
[
supervisord
]
nodaemon
=
false
logfile
=/
var
/
log
/
supervisor
/
supervisord
.
log
; (
main
log
file
;
default
$
CWD
/
supervisord
.
log
)
pidfile
=/
var
/
run
/
supervisord
.
pid
; (
supervisord
pidfile
;
default
supervisord
.
pid
)
childlogdir
=/
var
/
log
/
supervisor
; (
'AUTO'
child
log
dir
,
default
$
TEMP
)
nodaemon
=
false
;
true
to
run
in
foreground
[
program
:
ubusd
]
command
=/
bin
/
bash
-
c
"/usr/sbin/ubusd"
[
unix_http_server
]
file
=/
var
/
run
/
supervisor
.
sock
; (
the
path
to
the
socket
file
)
chmod
=
0700
;
sockef
file
mode
(
default
0700
)
[
program
:
rpcd
]
command
=/
bin
/
bash
-
c
"/usr/sbin/rpcd"
[
rpcinterface
:
supervisor
]
supervisor
.
rpcinterface_factory
=
supervisor
.
rpcinterface
:
make_main_rpcinterface
[
supervisorctl
]
serverurl
=
unix
:///
var
/
run
/
supervisor
.
sock
;
use
a
unix
://
URL
for
a
unix
socket
;
enables
us
to
add
additional
applications
in
a
convenient
way
[
include
]
files
= /
etc
/
supervisor
/
conf
.
d
/*.
conf
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment