Skip to content

Commit

Permalink
device name is hostname, not name
Browse files Browse the repository at this point in the history
  • Loading branch information
Davide Palma committed Jan 6, 2024
1 parent 31085ea commit 44deaaf
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,6 @@ on:
push:
branches: [ "main" ]

env:
# Use docker.io for Docker Hub if empty
REGISTRY: ghcr.io
# github.repository as <account>/<repo>
IMAGE_NAME: ${{ github.repository }}


jobs:
build:

Expand Down
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
# Speedshare Unofficial Docker Image
[Github repo](https://github.com/ElDavoo/speedshare)
Supports **x86_64** and **arm64**.
Your **container name** will be the **device name** on the dashboard.
Your **container hostname** will be the **device name** on the dashboard.
You won't get much logs, it's normal. Check the dashboard after about half a minute.

> The auto-update feature is enabled, but untested.
## Quick start
### Docker cli
```bash
docker run -d --name my_device \
docker run -d --name speedshare \
-h my_device \
-e CODE=your_authentication_code \
eldavo/speedshare
```
Expand All @@ -13,7 +19,8 @@ eldavo/speedshare
version: "3.9"
services:
speedshare:
container_name: my_device
container_name: speedshare
hostname: my_device
image: eldavo/speedshare
environment:
- CODE=your_authentication_code
Expand Down

0 comments on commit 44deaaf

Please sign in to comment.