18 Wheels of Steel frenchise on a modern PC
Hard Truck: 18 Wheels of Steel [2002] FOV Patch 18 Wheels of Steel: Across America [2003] Unstable, crashed during hauling 🙁 18 Wheels of Steel: Pedal to the Metal [2004] Great one! There is no FOV patch that worked with my GOG version though. On widescreen resolutions map and markers are enlarged, cockpit is also […]
Windrose dedicated server on Linux using Docker
Clone windrose-dedicated-server-docker
|
1 2 3 |
git clone https://github.com/UberDudePL/windrose-dedicated-server-docker.git cd windrose-dedicated-server-docker chmod +x ./windrose ./serverctl.sh |
Setup server It will ask you several questions, after which .env file will be created with your configuration.
|
1 |
./windrose setup |
Run server If you have not chosen it in the previous step.
|
1 |
./windrose start |
Status and logs
|
1 2 |
./windrose status ./windrose logs |
Mosquitto [MQTT] on Docker for HomeAssistant
Mosquitto Setup
|
1 2 3 |
mkdir Mosquitto cd Mosquitto/ vim docker-compose.yml |
docker-compose.yml
|
1 2 3 4 5 6 7 8 9 10 11 12 |
services: mosquitto: image: eclipse-mosquitto:2 container_name: mosquitto restart: unless-stopped ports: - "1883:1883" - "9001:9001" volumes: - ./mosquitto/config:/mosquitto/config - ./mosquitto/data:/mosquitto/data - ./mosquitto/log:/mosquitto/log |
|
1 2 |
mkdir -p mosquitto/config mosquitto/data mosquitto/log vim mosquitto/config/mosquitto.conf |
mosquitto/config/mosquitto.conf
|
1 2 |
listener 1883 allow_anonymous true |
Run docker compose up -d Add HomeAssistant Integration Add Integration > MQTT host: localhost
