You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 29, 2022. It is now read-only.
Guillaume edited this page Feb 7, 2021
·
2 revisions
this libretime image can be served over HTTPS pretty simply using traefik 1.7 (reverse proxy).
To be able to do it, you'll need the following docker-compose file.
docker-compose.yml:
version: "3.6"
# make sure to have a .env file in the same directory
services:
libretime:
image: odclive/libretime-docker:latest
container_name: libretime
environment:
- PUID=1000
- PGID=1000
- TZ=${TZ}
volumes: ...
restart: always
labels:
- "traefik.enable=true"
- "traefik.frontend.rule=Host:radio.example.com"
- "traefik.docker.network=web"
networks:
- web
volumes:
libretime_postgres:
networks:
web:
external: true
Once you have it setup, you'll have 2 steps to follow:
you can setup your docker+traefik 1.7 following this tutorial
"radio.example.com" must be a DNS record at your registar provider that point to your fixed IP server (I think that adding ddclient package, we can use a dynamic IP)