File tree 5 files changed +28
-4
lines changed
5 files changed +28
-4
lines changed Original file line number Diff line number Diff line change
1
+ name : publish
2
+ on :
3
+ push :
4
+ tags :
5
+ - v*
6
+
7
+ jobs :
8
+ build :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - uses : actions/checkout@v2
12
+ - name : build
13
+ run : |
14
+ echo "${{ secrets.CR_PAT }}" | docker login ghcr.io -u "${{ secrets.CR_USER }}" --password-stdin
15
+ docker build . --tag ghcr.io/ovrclk/akash-on-akash:${GITHUB_REF#refs/tags/}
16
+ docker push ghcr.io/ovrclk/akash-on-akash:${GITHUB_REF#refs/tags/}
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ LABEL org.opencontainers.image.source https://github.com/ovrclk/akash-on-akash
4
4
EXPOSE 8080
5
5
EXPOSE 26656
6
6
EXPOSE 26657
7
+ EXPOSE 1317
8
+ EXPOSE 9090
7
9
8
10
RUN apt-get update && apt-get install --no-install-recommends --assume-yes ca-certificates python3 python3-toml p7zip-full && apt-get clean
9
11
Original file line number Diff line number Diff line change @@ -101,10 +101,10 @@ global-labels = [
101
101
[api ]
102
102
103
103
# Enable defines if the API server should be enabled.
104
- enable = false
104
+ enable = true
105
105
106
106
# Swagger defines if swagger documentation should automatically be registered.
107
- swagger = false
107
+ swagger = true
108
108
109
109
# Address defines the API server to listen on.
110
110
address = " tcp://0.0.0.0:1317"
@@ -131,7 +131,7 @@ enabled-unsafe-cors = false
131
131
[grpc ]
132
132
133
133
# Enable defines if the gRPC server should be enabled.
134
- enable = false
134
+ enable = true
135
135
136
136
# Address defines the gRPC server address to bind to.
137
137
address = " 0.0.0.0:9090"
Original file line number Diff line number Diff line change @@ -306,7 +306,7 @@ temp_dir = ""
306
306
# 1) "v0" (default) - the legacy fast sync implementation
307
307
# 2) "v1" - refactor of v0 version for better testability
308
308
# 2) "v2" - complete redesign of v0, optimized for testability & readability
309
- version = " v0 "
309
+ version = " v2 "
310
310
311
311
# ######################################################
312
312
# ## Consensus Configuration Options ###
Original file line number Diff line number Diff line change @@ -19,6 +19,12 @@ services:
19
19
- port : 26656
20
20
to :
21
21
- global : true
22
+ - port : 1317
23
+ to :
24
+ - global : true
25
+ - port : 9090
26
+ to :
27
+ - global : true
22
28
23
29
profiles :
24
30
compute :
You can’t perform that action at this time.
0 commit comments