No track information found.
<% else %>
@@ -86,6 +101,14 @@
<% end %>
+ <% if transcripts.any? %>
+
+ Transcripts |
+
+ <% transcripts.each do |transcript| %>
+ <%= link_to(File.basename(URI.parse(transcript).path), transcript) %>
+ <% end %>
+ <% end %>
<% end %>
diff --git a/docker-compose.yml b/docker-compose.yml
index 8f5060a..9ce9812 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -1,5 +1,3 @@
-version: "3.8"
-
services:
app:
build: .
@@ -15,3 +13,5 @@ services:
# Note that this mounts the *entire* repo directory (including
# files ignored in .dockerignore when building the image)
- ./:/opt/app
+ tty: true
+ stdin_open: true
\ No newline at end of file
|