-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1712 from OriginTrail/v6/prerelease/testnet
Hotfix 1.21 - Update telemetry publishing frequency and key rotation
- Loading branch information
Showing
5 changed files
with
89 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
#base image | ||
FROM node:14.18.3-bullseye | ||
|
||
MAINTAINER OriginTrail | ||
LABEL maintainer="OriginTrail" | ||
ENV NODE_ENV=testnet | ||
|
||
|
||
#Mysql-server installation | ||
ARG DEBIAN_FRONTEND=noninteractive | ||
ARG PASSWORD=password | ||
RUN apt-get update | ||
RUN apt-get install -y lsb-release | ||
RUN apt-get install -y wget gnupg curl | ||
RUN curl -LO https://dev.mysql.com/get/mysql-apt-config_0.8.20-1_all.deb | ||
RUN dpkg -i ./mysql-apt-config_0.8.20-1_all.deb | ||
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 467B942D3A79BD29 | ||
|
||
|
||
RUN { \ | ||
echo mysql-server mysql-server/root_password password $PASSWORD ''; \ | ||
echo mysql-server mysql-server/root_password_again password $PASSWORD ''; \ | ||
} | debconf-set-selections \ | ||
&& apt-get update && apt-get install -y default-mysql-server default-mysql-server-core | ||
|
||
|
||
|
||
RUN apt-get -qq -y install git | ||
RUN apt-get -qq -y install make python | ||
|
||
#Install Papertrail | ||
RUN wget https://github.com/papertrail/remote_syslog2/releases/download/v0.20/remote_syslog_linux_amd64.tar.gz | ||
RUN tar xzf ./remote_syslog_linux_amd64.tar.gz && cd remote_syslog && cp ./remote_syslog /usr/local/bin | ||
COPY config/papertrail.yml /etc/log_files.yml | ||
|
||
|
||
|
||
|
||
|
||
|
||
#Install nodemon & forever | ||
RUN npm install forever -g | ||
|
||
|
||
|
||
|
||
WORKDIR /ot-node | ||
|
||
COPY . . | ||
|
||
#Install nppm | ||
RUN npm install | ||
|
||
#Mysql intialization | ||
RUN service mariadb start && mysql -u root -e "CREATE DATABASE operationaldb /*\!40100 DEFAULT CHARACTER SET utf8 */; SET PASSWORD FOR root@localhost = PASSWORD(''); FLUSH PRIVILEGES;" && npx sequelize --config=./config/sequelizeConfig.js db:migrate | ||
|
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,25 @@ | ||
version: '3.8' | ||
services: | ||
graphdb: | ||
container_name: graphdb | ||
image: khaller/graphdb-free:latest | ||
network_mode: host | ||
|
||
ot-node: | ||
container_name: ot-node | ||
image: origintrail/ot-node:v6.0.0-beta.1-debian | ||
depends_on: | ||
- graphdb | ||
expose: | ||
- 8900 | ||
- 9000 | ||
command: > | ||
bash -c " | ||
/bin/sleep 30 | ||
service mariadb start && | ||
forever index.js | ||
" | ||
volumes: | ||
- ${PWD}/.origintrail_noderc:/ot-node/.origintrail_noderc | ||
- ~/certs/:/root/certs/ | ||
network_mode: host |
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
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