Initial public release of birdwatch-relay
This commit is contained in:
commit
c176f2ad24
17 changed files with 2025 additions and 0 deletions
20
docker-compose.example.yml
Normal file
20
docker-compose.example.yml
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
# Example deployment. Copy to docker-compose.yml, fill in the values, and put
|
||||
# your Firebase service-account JSON next to this file as firebase-key.json.
|
||||
services:
|
||||
relay:
|
||||
image: ghcr.io/cyrilinait/birdwatch-relay:latest
|
||||
container_name: birdwatch-relay
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "8080:8080"
|
||||
volumes:
|
||||
- ./data:/data
|
||||
- ./firebase-key.json:/secrets/firebase-key.json:ro
|
||||
environment:
|
||||
RELAY_FIREBASE_KEY_PATH: /secrets/firebase-key.json
|
||||
RELAY_PAIRING_CODE: ${RELAY_PAIRING_CODE}
|
||||
RELAY_DB_PATH: /data/relay.db
|
||||
RELAY_PORT: "8080"
|
||||
FRIGATE_URL: ${FRIGATE_URL}
|
||||
FRIGATE_USER: ${FRIGATE_USER}
|
||||
FRIGATE_PASSWORD: ${FRIGATE_PASSWORD}
|
||||
Loading…
Add table
Add a link
Reference in a new issue