Snapshots: open bittorrent udp port in docker (#3969)

* Snapshots: open torrent udp in docker-compose.yml

* Snapshots: open torrent udp in docker-compose.yml
This commit is contained in:
Alex Sharov 2022-04-26 10:52:46 +07:00 committed by GitHub
parent 9c2ea3d41b
commit 6865f2543d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 4 deletions

View File

@ -21,7 +21,7 @@ RUN chown -R erigon:erigon /home/erigon
USER erigon
EXPOSE 8545 8550 8551 8546 30303 30303/udp 30304 30304/udp 8080 9090 6060
EXPOSE 8545 8550 8551 8546 30303 30303/udp 42069 42069/udp 8080 9090 6060
# https://github.com/opencontainers/image-spec/blob/main/annotations.md
ARG BUILD_DATE

View File

@ -17,8 +17,6 @@ services:
ports:
- "30303:30303/tcp"
- "30303:30303/udp"
- "30304:30304/tcp"
- "30304:30304/udp"
restart: unless-stopped
prometheus:
@ -65,5 +63,6 @@ services:
- erigon
ports:
- "9093:9093"
- "42069:42069"
- "42069:42069/tcp"
- "42069:42069/udp"
restart: unless-stopped