Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/npm_and_yarn/archived/ui/webpack-…
Browse files Browse the repository at this point in the history
…5.94.0
  • Loading branch information
genedna authored Sep 5, 2024
2 parents 45096be + e2422a9 commit 45c1da7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions docker/aries-engine-dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ ENV PATH=/root/.cargo/bin:$PATH
COPY . .

# build
RUN cargo clean
RUN git submodule deinit --all -f
RUN git submodule update --init --recursive
RUN if [ "$BUILD_TYPE" = "release" ]; then \
cargo build -p aries --release; \
else \
Expand Down
4 changes: 2 additions & 2 deletions docker/start-aries.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ CONFIG_FILE="$MEGA_BASE_DIR/etc/config.toml"

if [ -f "$CONFIG_FILE" ]; then
echo "Using config file: $CONFIG_FILE"
exec /usr/local/bin/aries -c "$CONFIG_FILE"
exec /usr/local/bin/aries -c "$CONFIG_FILE" --host 0.0.0.0 --hub-host gitmono.org
else
exec /usr/local/bin/aries
exec /usr/local/bin/aries --host 0.0.0.0 --hub-host gitmono.org
fi

0 comments on commit 45c1da7

Please sign in to comment.