Skip to content

Commit

Permalink
Merge pull request #17 from owyongsk/patch-1
Browse files Browse the repository at this point in the history
Fix self hosting instance docker-compose
  • Loading branch information
KTachibanaM authored Jul 9, 2024
2 parents 47cb480 + e9e3a8f commit 0051d9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker-compose.nitter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
image: ghcr.io/sekai-soft/nitter-self-contained
container_name: nitter
ports:
- "0.0.0.0:8080:8081"
- "0.0.0.0:8080:8080"
volumes:
- nitter-data:/nitter-data
depends_on:
Expand All @@ -21,7 +21,7 @@ services:
- .env
restart: unless-stopped
healthcheck:
test: wget -nv --tries=1 --spider http://127.0.0.1:80 || exit 1
test: wget -nv --tries=1 --spider http://127.0.0.1:8080 || exit 1
interval: 5s
timeout: 5s
retries: 12
Expand Down

0 comments on commit 0051d9b

Please sign in to comment.