Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
G
gmsec_containers
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
Christopher Reis
gmsec_containers
Commits
f264f1d5
Commit
f264f1d5
authored
Apr 07, 2017
by
Christopher Reis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated to add openmct and telemetry services
parent
7f751e93
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
398 additions
and
370 deletions
+398
-370
README.md
README.md
+9
-9
docker-compose.yml
docker-compose.yml
+68
-40
Dockerfile
gmsec_bolt/Dockerfile
+11
-11
.bashrc
gmsec_pub/.bashrc
+120
-120
Dockerfile
gmsec_pub/Dockerfile
+18
-18
delay.sh
gmsec_pub/delay.sh
+4
-4
Dockerfile
gmsec_rabbitmq/Dockerfile
+12
-12
.bashrc
gmsec_sub/.bashrc
+120
-120
Dockerfile
gmsec_sub/Dockerfile
+18
-18
delay.sh
gmsec_sub/delay.sh
+3
-3
Dockerfile
rabbitmq/Dockerfile
+10
-10
rabbitmq-start
rabbitmq/bin/rabbitmq-start
+5
-5
No files found.
README.md
View file @
f264f1d5
# gmsec_containers
# gmsec_containers
GMSEC Message Bus - Containerization Demonstration
GMSEC Message Bus - Containerization Demonstration
Run:
Run:
```
```
sudo docker-compose build
sudo docker-compose build
sudo docker-compose up
sudo docker-compose up
```
```
To run the test.
To run the test.
docker-compose.yml
View file @
f264f1d5
gmbolt
:
gmbolt
:
restart
:
always
restart
:
always
image
:
chrisreis53/gmsec_node:2-bolt
image
:
chrisreis53/gmsec_node:2-bolt
command
:
[
"
java"
,
"
-jar"
,
"
/GMSEC_API/bin/bolt.jar"
,
"
port=5000"
]
command
:
[
"
java"
,
"
-jar"
,
"
/GMSEC_API/bin/bolt.jar"
,
"
port=9100"
]
ports
:
rabbitmq
:
-
"
9100:9100"
restart
:
always
build
:
./rabbitmq
gm_sys_data
:
ports
:
restart
:
always
-
"
80:15672"
build
:
./gmsec_sys_data
links
:
activemq
:
-
gmbolt
restart
:
always
image
:
webcenter/activemq:latest
gm_telem_server
:
ports
:
restart
:
always
-
"
8161:8161"
build
:
./gmsec_telem_server
-
"
61616:61616"
links
:
-
"
61613:61613"
-
gmbolt
ports
:
gmsub
:
-
"
8081:8081"
restart
:
always
build
:
./gmsec_sub
gmsub
:
environment
:
restart
:
always
-
LD_LIBRARY_PATH=/GMSEC_API/bin
build
:
./gmsec_sub
links
:
environment
:
-
gmbolt
-
LD_LIBRARY_PATH=/GMSEC_API/bin
-
rabbitmq
links
:
command
:
/bin/bash /code/delay.sh
-
gmbolt
#command: ["/GMSEC_API/bin/gmsub","server=gmbolt:5000","connectiontype=gmsec_bolt"]
#- rabbitmq
#command: /bin/bash /code/delay.sh
gmpub
:
command
:
[
"
/GMSEC_API/bin/gmsub"
,
"
server=gmbolt:9100"
,
"
connectiontype=gmsec_bolt"
,
"
loglevel=none"
]
restart
:
always
build
:
./gmsec_pub
couchdb
:
environment
:
restart
:
always
-
LD_LIBRARY_PATH=/GMSEC_API/bin
image
:
couchdb:latest
links
:
-
gmbolt
openmct
:
-
rabbitmq
restart
:
always
command
:
[
"
bash"
,
"
/code/delay.sh"
]
build
:
./openmct_server
#command: ["/GMSEC_API/bin/gmpub","server=gmbolt:5000","iterations=2","connectiontype=gmsec_bolt","interval_ms=500"]
links
:
-
couchdb
ports
:
-
"
8080:8080"
# rabbitmq:
# restart: always
# build: ./rabbitmq
# ports:
# - "80:15672"
# activemq:
# restart: always
# image: webcenter/activemq:latest
# ports:
# - "8161:8161"
# - "61616:61616"
# - "61613:61613"
# gmpub:
# restart: always
# build: ./gmsec_pub
# environment:
# - LD_LIBRARY_PATH=/GMSEC_API/bin
# links:
# - gmbolt
# - rabbitmq
# command: ["bash","/code/delay.sh"]
# #command: ["/GMSEC_API/bin/gmpub","server=gmbolt:5000","iterations=2","connectiontype=gmsec_bolt","interval_ms=500"]
gmsec_bolt/Dockerfile
View file @
f264f1d5
############################
############################
#Docker file for GMSEC Bolt
#Docker file for GMSEC Bolt
#
#
############################
############################
FROM
chrisreis53/gmsec_node:2-bolt
FROM
chrisreis53/gmsec_node:2-bolt
MAINTAINER
Christopher Reis "chrisreis53@gmail.com"
MAINTAINER
Christopher Reis "chrisreis53@gmail.com"
EXPOSE
5000
EXPOSE
5000
EXPOSE
80
EXPOSE
80
CMD
["java","-jar","/GMSEC_API/bin/bolt.jar","port=5000"]
CMD
["java","-jar","/GMSEC_API/bin/bolt.jar","port=5000"]
gmsec_pub/.bashrc
View file @
f264f1d5
# ~/.bashrc: executed by bash(1) for non-login shells.
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# for examples
# If not running interactively, don't do anything
# If not running interactively, don't do anything
case
$-
in
case
$-
in
*
i
*
)
;;
*
i
*
)
;;
*
)
return
;;
*
)
return
;;
esac
esac
# don't put duplicate lines or lines starting with space in the history.
# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
# See bash(1) for more options
HISTCONTROL
=
ignoreboth
HISTCONTROL
=
ignoreboth
# append to the history file, don't overwrite it
# append to the history file, don't overwrite it
shopt
-s
histappend
shopt
-s
histappend
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
HISTSIZE
=
1000
HISTSIZE
=
1000
HISTFILESIZE
=
2000
HISTFILESIZE
=
2000
# check the window size after each command and, if necessary,
# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
# update the values of LINES and COLUMNS.
shopt
-s
checkwinsize
shopt
-s
checkwinsize
# If set, the pattern "**" used in a pathname expansion context will
# If set, the pattern "**" used in a pathname expansion context will
# match all files and zero or more directories and subdirectories.
# match all files and zero or more directories and subdirectories.
#shopt -s globstar
#shopt -s globstar
# make less more friendly for non-text input files, see lesspipe(1)
# make less more friendly for non-text input files, see lesspipe(1)
[
-x
/usr/bin/lesspipe
]
&&
eval
"
$(
SHELL
=
/bin/sh lesspipe
)
"
[
-x
/usr/bin/lesspipe
]
&&
eval
"
$(
SHELL
=
/bin/sh lesspipe
)
"
# set variable identifying the chroot you work in (used in the prompt below)
# set variable identifying the chroot you work in (used in the prompt below)
if
[
-z
"
${
debian_chroot
:-}
"
]
&&
[
-r
/etc/debian_chroot
]
;
then
if
[
-z
"
${
debian_chroot
:-}
"
]
&&
[
-r
/etc/debian_chroot
]
;
then
debian_chroot
=
$(
cat
/etc/debian_chroot
)
debian_chroot
=
$(
cat
/etc/debian_chroot
)
fi
fi
# set a fancy prompt (non-color, unless we know we "want" color)
# set a fancy prompt (non-color, unless we know we "want" color)
case
"
$TERM
"
in
case
"
$TERM
"
in
xterm-color|
*
-256color
)
color_prompt
=
yes
;;
xterm-color|
*
-256color
)
color_prompt
=
yes
;;
esac
esac
# uncomment for a colored prompt, if the terminal has the capability; turned
# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
# should be on the output of commands, not on the prompt
#force_color_prompt=yes
#force_color_prompt=yes
if
[
-n
"
$force_color_prompt
"
]
;
then
if
[
-n
"
$force_color_prompt
"
]
;
then
if
[
-x
/usr/bin/tput
]
&&
tput setaf 1
>
&/dev/null
;
then
if
[
-x
/usr/bin/tput
]
&&
tput setaf 1
>
&/dev/null
;
then
# We have color support; assume it's compliant with Ecma-48
# We have color support; assume it's compliant with Ecma-48
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
# a case would tend to support setf rather than setaf.)
# a case would tend to support setf rather than setaf.)
color_prompt
=
yes
color_prompt
=
yes
else
else
color_prompt
=
color_prompt
=
fi
fi
fi
fi
if
[
"
$color_prompt
"
=
yes
]
;
then
if
[
"
$color_prompt
"
=
yes
]
;
then
PS1
=
'${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
PS1
=
'${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
else
else
PS1
=
'${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
PS1
=
'${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
fi
unset
color_prompt force_color_prompt
unset
color_prompt force_color_prompt
# If this is an xterm set the title to user@host:dir
# If this is an xterm set the title to user@host:dir
case
"
$TERM
"
in
case
"
$TERM
"
in
xterm
*
|
rxvt
*
)
xterm
*
|
rxvt
*
)
PS1
=
"
\[\e
]0;
${
debian_chroot
:+
(
$debian_chroot
)
}
\u
@
\h
:
\w\a\]
$PS1
"
PS1
=
"
\[\e
]0;
${
debian_chroot
:+
(
$debian_chroot
)
}
\u
@
\h
:
\w\a\]
$PS1
"
;;
;;
*
)
*
)
;;
;;
esac
esac
# enable color support of ls and also add handy aliases
# enable color support of ls and also add handy aliases
if
[
-x
/usr/bin/dircolors
]
;
then
if
[
-x
/usr/bin/dircolors
]
;
then
test
-r
~/.dircolors
&&
eval
"
$(
dircolors
-b
~/.dircolors
)
"
||
eval
"
$(
dircolors
-b
)
"
test
-r
~/.dircolors
&&
eval
"
$(
dircolors
-b
~/.dircolors
)
"
||
eval
"
$(
dircolors
-b
)
"
alias ls
=
'ls --color=auto'
alias ls
=
'ls --color=auto'
#alias dir='dir --color=auto'
#alias dir='dir --color=auto'
#alias vdir='vdir --color=auto'
#alias vdir='vdir --color=auto'
alias grep
=
'grep --color=auto'
alias grep
=
'grep --color=auto'
alias
fgrep
=
'fgrep --color=auto'
alias
fgrep
=
'fgrep --color=auto'
alias
egrep
=
'egrep --color=auto'
alias
egrep
=
'egrep --color=auto'
fi
fi
# colored GCC warnings and errors
# colored GCC warnings and errors
#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
# some more ls aliases
# some more ls aliases
alias
ll
=
'ls -alF'
alias
ll
=
'ls -alF'
alias
la
=
'ls -A'
alias
la
=
'ls -A'
alias
l
=
'ls -CF'
alias
l
=
'ls -CF'
# Add an "alert" alias for long running commands. Use like so:
# Add an "alert" alias for long running commands. Use like so:
# sleep 10; alert
# sleep 10; alert
alias
alert
=
'notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '
\'
's/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'
\'
')"'
alias
alert
=
'notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '
\'
's/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'
\'
')"'
# Alias definitions.
# Alias definitions.
# You may want to put all your additions into a separate file like
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
if
[
-f
~/.bash_aliases
]
;
then
if
[
-f
~/.bash_aliases
]
;
then
.
~/.bash_aliases
.
~/.bash_aliases
fi
fi
# enable programmable completion features (you don't need to enable
# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
# sources /etc/bash.bashrc).
if
!
shopt
-oq
posix
;
then
if
!
shopt
-oq
posix
;
then
if
[
-f
/usr/share/bash-completion/bash_completion
]
;
then
if
[
-f
/usr/share/bash-completion/bash_completion
]
;
then
.
/usr/share/bash-completion/bash_completion
.
/usr/share/bash-completion/bash_completion
elif
[
-f
/etc/bash_completion
]
;
then
elif
[
-f
/etc/bash_completion
]
;
then
.
/etc/bash_completion
.
/etc/bash_completion
fi
fi
fi
fi
export
LD_LIBRARY_PATH
=
/GMSEC_API/bin
export
LD_LIBRARY_PATH
=
/GMSEC_API/bin
gmsec_pub/Dockerfile
View file @
f264f1d5
############################
############################
#Docker file for GMSEC Publish
#Docker file for GMSEC Publish
#
#
############################
############################
FROM
chrisreis53/gmsec_node:1-sub_pub_only
FROM
chrisreis53/gmsec_node:1-sub_pub_only
MAINTAINER
Christopher Reis "chrisreis53@gmail.com"
MAINTAINER
Christopher Reis "chrisreis53@gmail.com"
RUN
apt update
RUN
apt update
RUN
apt
install
-y
inetutils-ping
RUN
apt
install
-y
inetutils-ping
WORKDIR
/code
WORKDIR
/code
ADD
./delay.sh ./delay.sh
ADD
./delay.sh ./delay.sh
ENV
LD_LIBRARY_PATH /GMSEC_API/bin:/usr/lib/x86_64-linux-gnu/
ENV
LD_LIBRARY_PATH /GMSEC_API/bin:/usr/lib/x86_64-linux-gnu/
#server name must be same name given to gmsec bolt server
#server name must be same name given to gmsec bolt server
#CMD ["/GMSEC_API/bin/gmpub","server=gmbolt:5000","iterations=500","connectiontype=gmsec_bolt","interval_ms=500"]
#CMD ["/GMSEC_API/bin/gmpub","server=gmbolt:5000","iterations=500","connectiontype=gmsec_bolt","interval_ms=500"]
#CMD ["/GMSEC_API/bin/gmpub","server=rabbitmq:5672","iterations=500","connectiontype=gmsec_amqp","interval_ms=500"]
#CMD ["/GMSEC_API/bin/gmpub","server=rabbitmq:5672","iterations=500","connectiontype=gmsec_amqp","interval_ms=500"]
gmsec_pub/delay.sh
View file @
f264f1d5
#!/bin/bash
#!/bin/bash
sleep
2s
#wait for the busses to come up
sleep
2s
#wait for the busses to come up
/GMSEC_API/bin/gmpub
server
=
rabbitmq:5672
iterations
=
5
connectiontype
=
gmsec_amqp
interval_ms
=
500
/GMSEC_API/bin/gmpub
server
=
rabbitmq:5672
iterations
=
5
connectiontype
=
gmsec_amqp
interval_ms
=
500
/GMSEC_API/bin/gmpub
server
=
gmbolt:5000
iterations
=
5
connectiontype
=
gmsec_bolt
interval_ms
=
500
/GMSEC_API/bin/gmpub
server
=
gmbolt:5000
iterations
=
5
connectiontype
=
gmsec_bolt
interval_ms
=
500
gmsec_rabbitmq/Dockerfile
View file @
f264f1d5
FROM
ubuntu:latest
FROM
ubuntu:latest
RUN
apt update
RUN
apt update
RUN
apt
install
-y
rabbitmq-server
RUN
apt
install
-y
rabbitmq-server
RUN
rabbitmq-plugins
enable
rabbitmq_amqp1_0 rabbitmq_management
RUN
rabbitmq-plugins
enable
rabbitmq_amqp1_0 rabbitmq_management
RUN
service rabbitmq-server start
RUN
service rabbitmq-server start
EXPOSE
5672
EXPOSE
5672
EXPOSE
15672
EXPOSE
15672
CMD
["service","rabbitmq-server","start"]
CMD
["service","rabbitmq-server","start"]
gmsec_sub/.bashrc
View file @
f264f1d5
# ~/.bashrc: executed by bash(1) for non-login shells.
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# for examples
# If not running interactively, don't do anything
# If not running interactively, don't do anything
case
$-
in
case
$-
in
*
i
*
)
;;
*
i
*
)
;;
*
)
return
;;
*
)
return
;;
esac
esac
# don't put duplicate lines or lines starting with space in the history.
# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
# See bash(1) for more options
HISTCONTROL
=
ignoreboth
HISTCONTROL
=
ignoreboth
# append to the history file, don't overwrite it
# append to the history file, don't overwrite it
shopt
-s
histappend
shopt
-s
histappend
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
HISTSIZE
=
1000
HISTSIZE
=
1000
HISTFILESIZE
=
2000
HISTFILESIZE
=
2000
# check the window size after each command and, if necessary,
# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
# update the values of LINES and COLUMNS.
shopt
-s
checkwinsize
shopt
-s
checkwinsize
# If set, the pattern "**" used in a pathname expansion context will
# If set, the pattern "**" used in a pathname expansion context will
# match all files and zero or more directories and subdirectories.
# match all files and zero or more directories and subdirectories.
#shopt -s globstar
#shopt -s globstar
# make less more friendly for non-text input files, see lesspipe(1)
# make less more friendly for non-text input files, see lesspipe(1)
[
-x
/usr/bin/lesspipe
]
&&
eval
"
$(
SHELL
=
/bin/sh lesspipe
)
"
[
-x
/usr/bin/lesspipe
]
&&
eval
"
$(
SHELL
=
/bin/sh lesspipe
)
"
# set variable identifying the chroot you work in (used in the prompt below)
# set variable identifying the chroot you work in (used in the prompt below)
if
[
-z
"
${
debian_chroot
:-}
"
]
&&
[
-r
/etc/debian_chroot
]
;
then
if
[
-z
"
${
debian_chroot
:-}
"
]
&&
[
-r
/etc/debian_chroot
]
;
then
debian_chroot
=
$(
cat
/etc/debian_chroot
)
debian_chroot
=
$(
cat
/etc/debian_chroot
)
fi
fi
# set a fancy prompt (non-color, unless we know we "want" color)
# set a fancy prompt (non-color, unless we know we "want" color)
case
"
$TERM
"
in
case
"
$TERM
"
in
xterm-color|
*
-256color
)
color_prompt
=
yes
;;
xterm-color|
*
-256color
)
color_prompt
=
yes
;;
esac
esac
# uncomment for a colored prompt, if the terminal has the capability; turned
# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
# should be on the output of commands, not on the prompt
#force_color_prompt=yes
#force_color_prompt=yes
if
[
-n
"
$force_color_prompt
"
]
;
then
if
[
-n
"
$force_color_prompt
"
]
;
then
if
[
-x
/usr/bin/tput
]
&&
tput setaf 1
>
&/dev/null
;
then
if
[
-x
/usr/bin/tput
]
&&
tput setaf 1
>
&/dev/null
;
then
# We have color support; assume it's compliant with Ecma-48
# We have color support; assume it's compliant with Ecma-48
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
# a case would tend to support setf rather than setaf.)
# a case would tend to support setf rather than setaf.)
color_prompt
=
yes
color_prompt
=
yes
else
else
color_prompt
=
color_prompt
=
fi
fi
fi
fi
if
[
"
$color_prompt
"
=
yes
]
;
then
if
[
"
$color_prompt
"
=
yes
]
;
then
PS1
=
'${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
PS1
=
'${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
else
else
PS1
=
'${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
PS1
=
'${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
fi
unset
color_prompt force_color_prompt
unset
color_prompt force_color_prompt
# If this is an xterm set the title to user@host:dir
# If this is an xterm set the title to user@host:dir
case
"
$TERM
"
in
case
"
$TERM
"
in
xterm
*
|
rxvt
*
)
xterm
*
|
rxvt
*
)
PS1
=
"
\[\e
]0;
${
debian_chroot
:+
(
$debian_chroot
)
}
\u
@
\h
:
\w\a\]
$PS1
"
PS1
=
"
\[\e
]0;
${
debian_chroot
:+
(
$debian_chroot
)
}
\u
@
\h
:
\w\a\]
$PS1
"
;;
;;
*
)
*
)
;;
;;
esac
esac
# enable color support of ls and also add handy aliases
# enable color support of ls and also add handy aliases
if
[
-x
/usr/bin/dircolors
]
;
then
if
[
-x
/usr/bin/dircolors
]
;
then
test
-r
~/.dircolors
&&
eval
"
$(
dircolors
-b
~/.dircolors
)
"
||
eval
"
$(
dircolors
-b
)
"
test
-r
~/.dircolors
&&
eval
"
$(
dircolors
-b
~/.dircolors
)
"
||
eval
"
$(
dircolors
-b
)
"
alias ls
=
'ls --color=auto'
alias ls
=
'ls --color=auto'
#alias dir='dir --color=auto'
#alias dir='dir --color=auto'
#alias vdir='vdir --color=auto'
#alias vdir='vdir --color=auto'
alias grep
=
'grep --color=auto'
alias grep
=
'grep --color=auto'
alias
fgrep
=
'fgrep --color=auto'
alias
fgrep
=
'fgrep --color=auto'
alias
egrep
=
'egrep --color=auto'
alias
egrep
=
'egrep --color=auto'
fi
fi
# colored GCC warnings and errors
# colored GCC warnings and errors
#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
# some more ls aliases
# some more ls aliases
alias
ll
=
'ls -alF'
alias
ll
=
'ls -alF'
alias
la
=
'ls -A'
alias
la
=
'ls -A'
alias
l
=
'ls -CF'
alias
l
=
'ls -CF'
# Add an "alert" alias for long running commands. Use like so:
# Add an "alert" alias for long running commands. Use like so:
# sleep 10; alert
# sleep 10; alert
alias
alert
=
'notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '
\'
's/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'
\'
')"'
alias
alert
=
'notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '
\'
's/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'
\'
')"'
# Alias definitions.
# Alias definitions.
# You may want to put all your additions into a separate file like
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
if
[
-f
~/.bash_aliases
]
;
then
if
[
-f
~/.bash_aliases
]
;
then
.
~/.bash_aliases
.
~/.bash_aliases
fi
fi
# enable programmable completion features (you don't need to enable
# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
# sources /etc/bash.bashrc).
if
!
shopt
-oq
posix
;
then
if
!
shopt
-oq
posix
;
then
if
[
-f
/usr/share/bash-completion/bash_completion
]
;
then
if
[
-f
/usr/share/bash-completion/bash_completion
]
;
then
.
/usr/share/bash-completion/bash_completion
.
/usr/share/bash-completion/bash_completion
elif
[
-f
/etc/bash_completion
]
;
then
elif
[
-f
/etc/bash_completion
]
;
then
.
/etc/bash_completion
.
/etc/bash_completion
fi
fi
fi
fi
export
LD_LIBRARY_PATH
=
/GMSEC_API/bin
export
LD_LIBRARY_PATH
=
/GMSEC_API/bin
gmsec_sub/Dockerfile
View file @
f264f1d5
############################
############################
#Docker file for GMSEC Subscribe
#Docker file for GMSEC Subscribe
#
#
############################
############################
FROM
chrisreis53/gmsec_node:1-sub_pub_only
FROM
chrisreis53/gmsec_node:1-sub_pub_only
MAINTAINER
Christopher Reis "chrisreis53@gmail.com"
MAINTAINER
Christopher Reis "chrisreis53@gmail.com"
RUN
apt update
RUN
apt update
RUN
apt
install
-y
inetutils-ping
RUN
apt
install
-y
inetutils-ping
WORKDIR
/code
WORKDIR
/code
ADD
./delay.sh ./delay.sh
ADD
./delay.sh ./delay.sh
ENV
LD_LIBRARY_PATH /GMSEC_API/bin:/usr/lib/x86_64-linux-gnu/
ENV
LD_LIBRARY_PATH /GMSEC_API/bin:/usr/lib/x86_64-linux-gnu/
#server name must be same name given to gmsec bolt server
#server name must be same name given to gmsec bolt server
#CMD ["/GMSEC_API/bin/gmsub","server=gmbolt:5000","connectiontype=gmsec_bolt"]
#CMD ["/GMSEC_API/bin/gmsub","server=gmbolt:5000","connectiontype=gmsec_bolt"]
#CMD ["/GMSEC_API/bin/gmsub","server=rabbitmq:5672","connectiontype=gmsec_amqp"]
#CMD ["/GMSEC_API/bin/gmsub","server=rabbitmq:5672","connectiontype=gmsec_amqp"]
gmsec_sub/delay.sh
View file @
f264f1d5
#!/bin/bash
#!/bin/bash
sleep
2s
#wait for the busses to come up
sleep
2s
#wait for the busses to come up
/GMSEC_API/bin/gmsub
server
=
rabbitmq:5672
connectiontype
=
gmsec_amqp & /GMSEC_API/bin/gmsub
server
=
gmbolt:5000
connectiontype
=
gmsec_bolt
/GMSEC_API/bin/gmsub
server
=
rabbitmq:5672
connectiontype
=
gmsec_amqp & /GMSEC_API/bin/gmsub
server
=
gmbolt:5000
connectiontype
=
gmsec_bolt
rabbitmq/Dockerfile
View file @
f264f1d5
#
#
# RabbitMQ Dockerfile
# RabbitMQ Dockerfile
#
#
# https://github.com/dockerfile/rabbitmq
# https://github.com/dockerfile/rabbitmq
#
#
# Pull base image.
# Pull base image.
FROM
rabbitmq:3-management
FROM
rabbitmq:3-management
RUN
rabbitmq-plugins
enable
--offline
rabbitmq_amqp1_0
RUN
rabbitmq-plugins
enable
--offline
rabbitmq_amqp1_0
rabbitmq/bin/rabbitmq-start
View file @
f264f1d5
#!/bin/bash
#!/bin/bash
ulimit
-n
1024
ulimit
-n
1024
chown
-R
rabbitmq:rabbitmq /data
chown
-R
rabbitmq:rabbitmq /data
exec
rabbitmq-server
$@
exec
rabbitmq-server
$@
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