Spaces:
Sleeping
Sleeping
File size: 193 Bytes
12d64f8 |
1 2 3 4 5 6 7 8 9 10 11 |
#! /usr/bin/env bash
# 1. Build
cd /home/luigi/rts/web
docker build -t rts-game .
# 2. Run
docker run --rm -p 7860:7860 rts-game
# 3. Ouvrir dans le navigateur
xdg-open http://localhost:7860
|