A quick build of the xbox-smartglass-core-python pypi release
100K+
SmartGlass Core protocol python library now in a docker container xbox-smartglass-core.
This is an unofficial build. For official things please refer to the project here xbox-smartglass-core-python.
docker create \
--name=xboxrestapi \
-e SERVER=127.0.0.1 \
-e PORT=5557 \
-p 5557:5557 \
--restart unless-stopped \
whatdaybob/xbox-smartglass-core
version: '3.4'
services:
xboxrestapi:
container_name: xboxrestapi
image: whatdaybob/xbox-smartglass-core
environment: [
"SERVER=0.0.0.0",
"PORT=5557"
]
volumes: [
'/etc/localtime:/etc/localtime:ro'
]
restart: always
ports: ['5557:5557']
| Parameter | Function |
|---|---|
| -e PORT=5557 | Sets the port to listen on (default 5557) |
| -e SERVER=127.0.0.1 | Sets the IP the server will bind to (default 127.0.0.1) |
If i helped in anyway and you would like to help me, consider donating a lovely beverage with the below.
Content type
Image
Digest
Size
91.2 MB
Last updated
about 6 years ago
docker pull whatdaybob/xbox-smartglass-core