Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 569 Bytes

README.adoc

File metadata and controls

31 lines (22 loc) · 569 Bytes

Multimedia combine

Select media ressources and play them together.

cd web
# run for dev
python -m http.server 8080

# run for prod
python -m http.server 80
# the container will start a web server on port 8080
docker build --file Dockerfile --tag "musical-memory" .

# exposes it on the 8080 port (dev)
docker run --rm -p 8080:8080 musical-memory

# exposes it on the 80 port (prod)
docker run --rm -p 80:8080 musical-memory