Skip to content

Commit

Permalink
Fix radio.liq; update dockerfile labels
Browse files Browse the repository at this point in the history
  • Loading branch information
akosveres committed Jun 17, 2024
1 parent f6a17de commit 4afb5fd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
12 changes: 7 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
FROM savonet/liquidsoap:v2.2.5
LABEL maintainer="XTRadio Ops <[email protected]>" \
version="0.1" \
description="XTRadio Liquidsoap docker image"

COPY radio.liq /etc/liquidsoap/radio.liq

RUN liquidsoap --check /etc/liquidsoap/radio.liq

FROM savonet/liquidsoap:v2.2.5-minimal
LABEL org.xtradio.maintainer="XTRadio Ops <[email protected]>" \
org.xtradio.liquidsoap.version="v2.2.5" \
org.xtradio.description="XTRadio Liquidsoap docker image"

COPY --from=0 /etc/liquidsoap/radio.liq /etc/liquidsoap/radio.liq

ENTRYPOINT [ "liquidsoap", "/etc/liquidsoap/radio.liq" ]
8 changes: 4 additions & 4 deletions radio.liq
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

# Standard settings
# settings.log.file.path = "/tmp/radio.log"
settings.log.stdout = true
settings.server.telnet = true
settings.server.telnet.bind_addr = "0.0.0.0"
settings.init.allow_root = true
settings.log.stdout := true
settings.server.telnet := true
settings.server.telnet.bind_addr := "0.0.0.0"
settings.init.allow_root := true

# Rewrite title to include link to songs (for IceCast direct users)
def map( m )
Expand Down

0 comments on commit 4afb5fd

Please sign in to comment.