Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
faircoind
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
kaana.red
faircoind
Compare revisions
master to d9b955aa41424f41a74a12d4857ec0c6221bd6da
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
kaana.red/faircoind
Select target project
No results found
d9b955aa41424f41a74a12d4857ec0c6221bd6da
Select Git revision
Swap
Target
faircoin.co/faircoind
Select target project
faircoin.co/faircoind
kaana.red/faircoind
2 results
master
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (3)
change tag to kaana.red
· c2f29744
TonyFord
authored
4 years ago
c2f29744
remove pulse.faircoin.co and change domain to kaana.red
· d67a8f73
TonyFord
authored
4 years ago
d67a8f73
some fixes
· d9b955aa
TonyFord
authored
4 years ago
d9b955aa
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitlab-ci.yml
+6
-6
6 additions, 6 deletions
.gitlab-ci.yml
Dockerfile
+3
-7
3 additions, 7 deletions
Dockerfile
docker-compose.yml
+2
-3
2 additions, 3 deletions
docker-compose.yml
script/blocknotify.sh
+1
-3
1 addition, 3 deletions
script/blocknotify.sh
with
12 additions
and
19 deletions
.gitlab-ci.yml
View file @
d9b955aa
...
...
@@ -8,7 +8,7 @@ stages:
build-faircoind
:
stage
:
build
tags
:
-
FairCoin.Co
-
kaana.red
only
:
refs
:
-
master
...
...
@@ -27,7 +27,7 @@ build-faircoind:
start-faircoind
:
stage
:
start
tags
:
-
FairCoin.Co
-
kaana.red
only
:
refs
:
-
master
...
...
@@ -47,7 +47,7 @@ start-faircoind:
stop-faircoind
:
stage
:
stop
tags
:
-
FairCoin.Co
-
kaana.red
only
:
refs
:
-
master
...
...
@@ -59,7 +59,7 @@ stop-faircoind:
uninstall-faircoind
:
stage
:
uninstall
tags
:
-
FairCoin.Co
-
kaana.red
only
:
refs
:
-
master
...
...
@@ -72,7 +72,7 @@ uninstall-faircoind:
remove-faircoind
:
stage
:
remove
tags
:
-
FairCoin.Co
-
kaana.red
only
:
refs
:
-
master
...
...
@@ -80,6 +80,6 @@ remove-faircoind:
-
$CMD =~ /remove/
script
:
-
docker-compose stop
-
docker-compose down
-
docker-compose down
-v --rmi all --remove-orphans
after_script
:
-
rm -R ~/.faircoin2
This diff is collapsed.
Click to expand it.
Dockerfile
View file @
d9b955aa
...
...
@@ -61,22 +61,18 @@ RUN mv ./faircoin-cli /home/faircoin/faircoin-cli
USER
root
###########################################################################################
### install dependencies for explorer.
faircoin.co
###################################root##
### install dependencies for explorer.
kaana.red
###################################root##
RUN
python3
-m
pip
install
\
simplejson
\
requests
\
interruptingcow
\
PyMySQL
RUN
mkdir
-p
/home/faircoin/pulse.faircoin.co
RUN
chown
-R
faircoin:faircoin /home/faircoin/pulse.faircoin.co
RUN
mkdir
-p
/home/faircoin/.faircoin2
RUN
chown
-R
faircoin:faircoin /home/faircoin/.faircoin2
RUN
mkdir
-p
/home/faircoin/explorer.
faircoin.co
RUN
chown
-R
faircoin:faircoin /home/faircoin/explorer.
faircoin.co
RUN
mkdir
-p
/home/faircoin/explorer.
kaana.red
RUN
chown
-R
faircoin:faircoin /home/faircoin/explorer.
kaana.red
USER
faircoin
WORKDIR
/home/faircoin
...
...
This diff is collapsed.
Click to expand it.
docker-compose.yml
View file @
d9b955aa
...
...
@@ -12,7 +12,7 @@ services:
FAIRCOIN_PORT
:
${FAIRCOIN_PORT:-40404}
env_file
:
-
${FAIRCOIN_CONF}
container_name
:
F
air
C
oin
.Co
-faircoind
container_name
:
${CI_PROJECT_NAME:-f
air
c
oin
}
-faircoind
restart
:
always
command
:
'
-disablewallet
-port=${FAIRCOIN_PORT:-40404}
-blocknotify=/home/faircoin/script/blocknotify.sh'
network_mode
:
"
host"
...
...
@@ -20,5 +20,4 @@ services:
volumes
:
-
~/.faircoin2:/home/faircoin/.faircoin2
-
./script:/home/faircoin/script
-
../pulse.faircoin.co:/home/faircoin/pulse.faircoin.co
-
../explorer.faircoin.co:/home/faircoin/explorer.faircoin.co
-
../explorer.kaana.red:/home/faircoin/explorer.kaana.red
This diff is collapsed.
Click to expand it.
script/blocknotify.sh
View file @
d9b955aa
#!/bin/bash
python3 /home/faircoin/pulse.faircoin.co/script/getdata.py
cd
/home/faircoin/explorer.faircoin.co/scripts
cd
/home/faircoin/explorer.kaana.red/scripts
python3 dbload.py
This diff is collapsed.
Click to expand it.