File tree 3 files changed +11
-7
lines changed
3 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 64
64
- name : Add SHORT_SHA env property with commit short sha
65
65
run : echo "SHORT_SHA=`echo ${GITHUB_SHA} | cut -c1-8`" >> $GITHUB_ENV
66
66
67
- - name : Login to Docker for building
68
- run : echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
67
+ # - name: Login to Docker for building
68
+ # run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
69
+
70
+ - name : Login to Docker
71
+ run : |
72
+ docker login -u "sondreb" -p "${{secrets.DOCKER_KEY}}"
69
73
70
74
- name : Checkout project
71
75
uses : actions/checkout@v4
99
103
--cache-from "type=local,src=/tmp/.buildx-cache" \
100
104
--cache-to "type=local,dest=/tmp/.buildx-cache" \
101
105
--platform linux/amd64,linux/arm64 \
102
- --tag ${{ secrets.DOCKER_HUB_USER }}/ ${{ matrix.service }}:$TAG \
103
- --tag ${{ secrets.DOCKER_HUB_USER }}/ ${{ matrix.service }}:latest \
106
+ --tag blockcore/mempool- ${{ matrix.service }}:$TAG \
107
+ --tag blockcore/mempool- ${{ matrix.service }}:latest \
104
108
--build-context rustgbt=./rust \
105
109
--build-context backend=./backend \
106
110
--output "type=registry" ./${{ matrix.service }}/ \
Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ services:
117
117
LETSENCRYPT_HOST : explorer.angor.io
118
118
LETSENCRYPT_EMAIL :
[email protected]
119
119
ASPNETCORE_URLS : http://+:8080
120
- image : mempool/ frontend:latest
120
+ image : blockcore/mempool- frontend:latest
121
121
user : " 0:1000"
122
122
restart : always
123
123
stop_grace_period : 1m
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ services:
5
5
environment :
6
6
FRONTEND_HTTP_PORT : " 8080"
7
7
BACKEND_MAINNET_HTTP_HOST : " api"
8
- image : mempool/ frontend:latest
8
+ image : blockcore/mempool- frontend:latest
9
9
user : " 1000:1000"
10
10
restart : on-failure
11
11
stop_grace_period : 1m
@@ -25,7 +25,7 @@ services:
25
25
DATABASE_USERNAME : " mempool"
26
26
DATABASE_PASSWORD : " mempool"
27
27
STATISTICS_ENABLED : " true"
28
- image : mempool/ backend:latest
28
+ image : blockcore/mempool- backend:latest
29
29
user : " 1000:1000"
30
30
restart : on-failure
31
31
stop_grace_period : 1m
You can’t perform that action at this time.
0 commit comments