change the current sonic build slightly
This commit is contained in:
@@ -1,10 +1,3 @@
|
|||||||
# Running Sonic in Docker is Experimental - not recommended for production use!
|
|
||||||
|
|
||||||
# Example of usage:
|
|
||||||
# docker build -t sonic .
|
|
||||||
# docker run --name sonic1 --entrypoint sonictool sonic --datadir=/var/sonic genesis fake 1
|
|
||||||
# docker run --volumes-from sonic1 -p 5050:5050 -p 5050:5050/udp -p 18545:18545 sonic --fakenet 1/1 --http --http.addr=0.0.0.0
|
|
||||||
|
|
||||||
FROM golang:1.22 as builder
|
FROM golang:1.22 as builder
|
||||||
|
|
||||||
ARG VERSION
|
ARG VERSION
|
||||||
@@ -24,10 +17,11 @@ FROM golang:1.22
|
|||||||
COPY --from=builder /go/sonic/build/sonicd /usr/local/bin/
|
COPY --from=builder /go/sonic/build/sonicd /usr/local/bin/
|
||||||
COPY --from=builder /go/sonic/build/sonictool /usr/local/bin/
|
COPY --from=builder /go/sonic/build/sonictool /usr/local/bin/
|
||||||
|
|
||||||
COPY ./entrypoint.sh /entrypoint.sh
|
COPY ./entrypoint.sh /usr/local/bin/entrypoint.sh
|
||||||
|
RUM chmod +x /usr/local/bin/entrypoint.sh
|
||||||
|
|
||||||
EXPOSE 18545 18546 5050 5050/udp
|
EXPOSE 18545 18546 5050 5050/udp
|
||||||
|
|
||||||
VOLUME /var/sonic
|
VOLUME /var/sonic
|
||||||
|
|
||||||
ENTRYPOINT ["bash", "/entrypoint.sh"]
|
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
|
||||||
@@ -1,25 +1,23 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if [ ! -f /var/sonic/initialized ]; then
|
datadir=/var/sonic
|
||||||
|
|
||||||
|
if [ ! -f "$datadir/initialized" ]; then
|
||||||
echo "Initializing Sonic..."
|
echo "Initializing Sonic..."
|
||||||
|
|
||||||
# Add your initialization commands here
|
url="${GENESIS:-https://genesis.soniclabs.com/sonic-mainnet/genesis/sonic.g}"
|
||||||
# Example:
|
filename=$(basename "$url")
|
||||||
# mkdir -p /var/sonic/data
|
|
||||||
# touch /var/sonic/config.json
|
|
||||||
|
|
||||||
wget https://genesis.soniclabs.com/sonic-mainnet/genesis/sonic.g
|
wget -P "$datadir" "$url"
|
||||||
GOMEMLIMIT=50GiB sonictool --datadir /var/sonic --cache 12000 genesis sonic.g
|
|
||||||
rm sonic.g
|
|
||||||
|
|
||||||
# Create the file to mark initialization
|
GOMEMLIMIT="${CACHE_GB}GiB" sonictool --datadir "$datadir" --cache "${CACHE_GB}000" genesis "$datadir/$filename"
|
||||||
touch /var/sonic/initialized
|
rm "$datadir/$filename"
|
||||||
|
|
||||||
|
touch "$datadir/initialized"
|
||||||
|
|
||||||
echo "Initialization complete."
|
echo "Initialization complete."
|
||||||
else
|
else
|
||||||
echo "Sonic is already initialized."
|
echo "Sonic is already initialized."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
touch /var/sonic/initialized
|
exec sonicd --cache "${CACHE_GB}000" --datadir "$datadir" "$@"
|
||||||
|
|
||||||
exec sonicd --datadir /var/sonic "$@"
|
|
||||||
|
|||||||
Reference in New Issue
Block a user