Browse Source
Umbrel v0.1.4-beta (#33)
* Update images
* Add dashboard's latest release
* Update git tags
patch-5
v0.1.4-beta
Mayank Chhabra
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
10 additions and
8 deletions
-
README.md
-
docker-compose.yml
-
install-box.sh
|
|
@ -78,9 +78,9 @@ Ensure that your account is [correctly permissioned to use docker](https://docs. |
|
|
|
# Ideally you should run this in $HOME as the docker-compose presets are in home |
|
|
|
# This will not overwrite any other files but you should segment this in its |
|
|
|
# own account |
|
|
|
curl "https://raw.githubusercontent.com/getumbrel/umbrel/v0.1.3-beta/install-box.sh" | sh |
|
|
|
curl "https://raw.githubusercontent.com/getumbrel/umbrel/v0.1.4-beta/install-box.sh" | sh |
|
|
|
# OR wget (if this works better) |
|
|
|
wget -qO- "https://raw.githubusercontent.com/getumbrel/umbrel/v0.1.3-beta/install-box.sh" | sh |
|
|
|
wget -qO- "https://raw.githubusercontent.com/getumbrel/umbrel/v0.1.4-beta/install-box.sh" | sh |
|
|
|
``` |
|
|
|
|
|
|
|
### Step 2. Configure |
|
|
|
|
|
@ -69,7 +69,7 @@ services: |
|
|
|
ipv4_address: 10.11.1.2 |
|
|
|
dashboard: |
|
|
|
container_name: dashboard |
|
|
|
image: getumbrel/dashboard:v0.2.2 |
|
|
|
image: getumbrel/dashboard:v0.2.3 |
|
|
|
logging: *default-logging |
|
|
|
restart: unless-stopped |
|
|
|
stop_grace_period: 1m30s |
|
|
@ -78,20 +78,20 @@ services: |
|
|
|
ipv4_address: 10.11.0.3 |
|
|
|
manager: |
|
|
|
container_name: manager |
|
|
|
image: getumbrel/manager:v0.1.2 |
|
|
|
image: getumbrel/manager:v0.1.3 |
|
|
|
logging: *default-logging |
|
|
|
depends_on: [ tor ] |
|
|
|
restart: unless-stopped |
|
|
|
stop_grace_period: 5m30s |
|
|
|
volumes: |
|
|
|
- ${PWD}:${PWD} |
|
|
|
- ${PWD}/db:/db |
|
|
|
- ${PWD}/events/signals:/signals |
|
|
|
- ${PWD}/tor/data:/var/lib/tor/ |
|
|
|
- /var/run/docker.sock:/var/run/docker.sock |
|
|
|
- /usr/bin/docker:/usr/bin/docker |
|
|
|
- ${PWD}:${PWD} |
|
|
|
- jwt-public-key:/jwt-public-key |
|
|
|
- jwt-private-key:/jwt-private-key |
|
|
|
- ${PWD}/tor/data:/var/lib/tor/ |
|
|
|
environment: |
|
|
|
PORT: "3006" |
|
|
|
USER_PASSWORD_FILE: "/db/user.json" |
|
|
@ -102,6 +102,8 @@ services: |
|
|
|
DEVICE_HOST: "http://umbrel.local" |
|
|
|
MIDDLEWARE_API_URL: "http://10.11.2.2" |
|
|
|
UMBREL_DASHBOARD_HIDDEN_SERVICE_FILE: "/var/lib/tor/web/hostname" |
|
|
|
SHUTDOWN_SIGNAL_FILE: "/signals/shutdown" |
|
|
|
REBOOT_SIGNAL_FILE: "/signals/reboot" |
|
|
|
networks: |
|
|
|
net: |
|
|
|
ipv4_address: 10.11.2.1 |
|
|
|
|
|
@ -26,8 +26,8 @@ echo "Cloning to current working directory from github..." |
|
|
|
git init |
|
|
|
git remote add origin https://github.com/getumbrel/umbrel.git |
|
|
|
git fetch --all --tags |
|
|
|
git checkout tags/v0.1.3-beta |
|
|
|
git reset --hard tags/v0.1.3-beta |
|
|
|
git checkout tags/v0.1.4-beta |
|
|
|
git reset --hard tags/v0.1.4-beta |
|
|
|
|
|
|
|
echo "Removing stuff we don't need" |
|
|
|
rm -fr .git |
|
|
|