Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions scripts/createcomet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ then
fi

SHIP="$1"
: ${URBIT_IMAGE:="asssaf/urbit:latest"}
: ${URBIT_IMAGE:="tloncorp/urbit:latest"}

docker run -ti --rm \
--net host \
-v $(pwd):/urbit \
--user $(id -u):$(id -g) \
${URBIT_IMAGE} -c ${SHIP}
${URBIT_IMAGE} /bin/urbit -c ${SHIP}
4 changes: 2 additions & 2 deletions scripts/createship.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ fi

SHIP="$1"
KEY_FILE="$2"
: ${URBIT_IMAGE:="asssaf/urbit:latest"}
: ${URBIT_IMAGE:="tloncorp/urbit:latest"}

if [ ! -f "$KEY_FILE" ]
then
Expand All @@ -23,4 +23,4 @@ docker run -ti --rm \
-v $(pwd):/urbit \
-v "$ABS_KEY_FILE:/mnt/key_file:ro" \
--user $(id -u):$(id -g) \
${URBIT_IMAGE} -w ${SHIP} -k /mnt/key_file
${URBIT_IMAGE} /bin/urbit -w ${SHIP} -k /mnt/key_file
4 changes: 2 additions & 2 deletions scripts/run
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

SHIP="$1"
: ${URBIT_IMAGE:="asssaf/urbit:latest"}
: ${URBIT_IMAGE:="tloncorp/urbit:latest"}

if [ -z "$SHIP" ]
then
Expand All @@ -14,4 +14,4 @@ docker run -ti --rm \
-v $(pwd)/${SHIP}:/srv/${SHIP} \
--workdir /srv \
--user $(id -u):$(id -g) \
${URBIT_IMAGE} ${SHIP}
${URBIT_IMAGE} /bin/urbit ${SHIP}
4 changes: 2 additions & 2 deletions scripts/run-backend
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ then
exit 1
fi

: ${URBIT_IMAGE:="asssaf/urbit:latest"}
: ${URBIT_IMAGE:="tloncorp/urbit:latest"}
: ${LETSENCRYPT_DOMAIN:?"must be set"}
: ${LETSENCRYPT_EMAIL:?"must be set"}

Expand All @@ -27,4 +27,4 @@ docker run -t -d --name $SHIP \
-v $(pwd)/${SHIP}:/srv/${SHIP} \
--workdir /srv \
--user $(id -u):$(id -g) \
${URBIT_IMAGE} -d ${SHIP}
${URBIT_IMAGE} /bin/urbit ${SHIP}
4 changes: 2 additions & 2 deletions scripts/run-daemon
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

SHIP="$1"
: ${URBIT_IMAGE:="asssaf/urbit:latest"}
: ${URBIT_IMAGE:="tloncorp/urbit:latest"}

if [ -z "$SHIP" ]
then
Expand All @@ -14,4 +14,4 @@ docker run -t -d --rm \
-v $(pwd)/${SHIP}:/srv/${SHIP} \
--workdir /srv \
--user $(id -u):$(id -g) \
${URBIT_IMAGE} -d ${SHIP}
${URBIT_IMAGE} /bin/urbit ${SHIP}