Skip to content
This repository was archived by the owner on May 16, 2024. It is now read-only.

Commit 39e042a

Browse files
committed
Fix image name
1 parent 6848840 commit 39e042a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/docker-ubuntu-image.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Build Docker Ubuntu Image
33
on:
44
push:
55
branches:
6-
- '*'
6+
- 'master'
77

88
env:
99
REGISTRY: ghcr.io

docker/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
Dockerfile for The Open Network Node
33

44
#### Install
5-
```docker pull newton-blockchain/ton-node```
5+
```docker pull ghcr.io/newton-blockchain/ton```
66
#### Create volume
77
```docker volume create ton-db```
88
#### Run
9-
```docker run -d --name ton-node --mount source=ton-db,target=/var/ton-work/db --network host -e "PUBLIC_IP=<YOUR_PUBLIC_IP>" -e "CONSOLE_PORT=<TCP-PORT1>" -e "LITESERVER=true" -e "LITE_PORT=<TCP-PORT2>" -it newton-blockchain/ton-node```
9+
```docker run -d --name ton-node --mount source=ton-db,target=/var/ton-work/db --network host -e "PUBLIC_IP=<YOUR_PUBLIC_IP>" -e "CONSOLE_PORT=<TCP-PORT1>" -e "LITESERVER=true" -e "LITE_PORT=<TCP-PORT2>" -it ghcr.io/newton-blockchain/ton```
1010

1111

1212
If you don't need Liteserver, then remove -e "LITESERVER=true".

0 commit comments

Comments
 (0)