From ca28fc6242861a6e28b40f865ace45e15b0ab1d3 Mon Sep 17 00:00:00 2001 From: Samuel ORTION Date: Thu, 25 Aug 2022 13:34:27 +0200 Subject: [PATCH] install: Fix curl command --- INSTALL.md | 18 ------------------ README.md | 2 +- docker-compose.yml | 26 +++++++++++++------------- docker/recording/Dockerfile | 12 +++--------- 4 files changed, 17 insertions(+), 41 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 9ebb0fe..aa68621 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -2,24 +2,6 @@ This guide allow you to install BirdNET-stream step by step on your debian based system. -For a one-liner installation, you can use the following command: - -```bash -curl -sL https://raw.githubusercontent.com/UncleSamulus/BirdNET-stream/main/install.sh | bash -``` - -For debug purposes, you can use the following command, it will log the installation steps to the console: - -```bash -DEBUG=1 ./install.sh -``` - -If you need to use a specific branch (e.g. dev), you can use the following command: - -```bash -BRANCH=dev ./install.sh -``` - ## Requirements - git diff --git a/README.md b/README.md index 19a8905..32c55ca 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ On debian based systems (tested on Debian Bullseye), the following command shoul # Change to your installation directory here, /home/$USER/Documents/BirdNET-stream for instance, or /opt/birdnet-stream, or whatever cd /path/to/installation/directory # Download installation script -curl -0 https://raw.githubusercontent.com/UncleSamulus/BirdNET-stream/main/install.sh +curl -O https://raw.githubusercontent.com/UncleSamulus/BirdNET-stream/main/install.sh # Run installation script: chmod +x ./install.sh ./install.sh diff --git a/docker-compose.yml b/docker-compose.yml index 006b27f..794801f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,19 +1,19 @@ version: '3.9' services: - # recording: - # container_name: birdnet_recording - # build: - # context: . - # dockerfile: ./docker/recording/Dockerfile - # restart: unless-stopped - # environment: - # - CHUNK_FOLDER=${CHUNK_FOLDER:-/media/birdnet/records} - # volumes: - # - ${RECORDS_DIR:-/media/birdnet/records}:${RECORS_FOLDER:-/media/birdnet/records} - # # Allow container to access to the hosts microphone - # devices: - # - /dev/snd:/dev/snd + recording: + container_name: birdnet_recording + build: + context: . + dockerfile: ./docker/recording/Dockerfile + restart: unless-stopped + volumes: + - birdnet_app:${PROJECT_ROOT:-/opt/birdnet} + - birdnet_records:${RECORDS_DIR:-/media/birdnet/records} + # Allow container to access to the hosts microphone + devices: + - /dev/snd:/dev/snd + # analyzer: # container_name: birdnet_analyzer # build: diff --git a/docker/recording/Dockerfile b/docker/recording/Dockerfile index 83ebbf0..dc5754f 100644 --- a/docker/recording/Dockerfile +++ b/docker/recording/Dockerfile @@ -11,15 +11,9 @@ ENV DEBIAN_FRONTEND noninteractive RUN apt-get update && apt-get upgrade -y \ && apt-get install -y \ --no-install-recommends \ - libasound2 \ - alsa-utils \ - libsndfile1-dev \ - && apt-get install -y ffmpeg \ + ffmpeg \ && apt-get clean -RUN mkdir -p /opt/birdnet/ -WORKDIR /opt/birdnet/ -COPY config ./config -COPY daemon/birdnet_recording.sh /usr/local/bin/birdnet_recording.sh +WORKDIR /opt/birdnet -ENTRYPOINT ["/usr/local/bin/birdnet_recording.sh"] \ No newline at end of file +ENTRYPOINT ["./daemon/birdnet_recording.sh"] \ No newline at end of file