WIP: Switch to NixOS #5

Draft
FunctionalHacker wants to merge 1349 commits from nix into main
3 changed files with 18 additions and 0 deletions
Showing only changes of commit 3678b80560 - Show all commits

1
docker/freshrss/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
.env

View file

@ -33,6 +33,13 @@ services:
- "traefik.docker.network=proxy"
- "traefik.http.services.freshrss.loadbalancer.server.port=80"
spotifeed:
build: ./spotifeed
container_name: spotifeed
restart: unless-stopped
networks:
- freshrss
networks:
freshrss:
external: false

View file

@ -0,0 +1,10 @@
FROM ruby:2.7.2
RUN git clone https://github.com/timdorr/spotifeed
WORKDIR /spotifeed
RUN git checkout a105f0956b33444c71a47a1cddff44f12b77c297
RUN bundle install
EXPOSE 8083
RUN apt-get update
RUN apt-get upgrade
RUN apt-get install redis-server -y
CMD puma -p 8083 & redis-server