Skip to content

Commit

Permalink
feat: upgrade to master repo
Browse files Browse the repository at this point in the history
  • Loading branch information
kristobalus committed Dec 14, 2023
1 parent 891e386 commit 6bb9543
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions docker-compose.test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
version: '3.8'

services:
nitter-redis:
image: redis:latest

nitter:
image: kristobalus/nitter:latest
platform: "linux/amd64"
environment:
NITTER_GUEST_ACCOUNTS_URL: "${NITTER_GUEST_ACCOUNTS_URL}"
entrypoint: |
/bin/sh -c '
cp /config/nitter.conf /src/nitter.conf
wget -O /src/guest_accounts.json $NITTER_GUEST_ACCOUNTS_URL
./nitter
'
ports:
- "8080:8080"
depends_on:
- nitter-redis
volumes:
- ./configs/nitter:/config


0 comments on commit 6bb9543

Please sign in to comment.