Skip to content

Commit

Permalink
External Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
KoalaSat committed Oct 2, 2024
1 parent 49489cc commit 9561fe5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 11 deletions.
10 changes: 1 addition & 9 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,7 @@ services:
- /var/www/certbot/:/var/www/certbot/:rw
- /etc/letsencrypt/:/etc/letsencrypt/:rw
entrypoint: "/bin/sh -c 'trap exit TERM; while :; do certbot renew; sleep 12h & wait $${!}; done;'"
tor:
build: ./tor
container_name: tor
restart: always
volumes:
- ./tor/config:/var/lib/tor
- ./tor/torrc:/etc/tor
networks:
- nginx
networks:
nginx:
driver: bridge
external: true
5 changes: 3 additions & 2 deletions src/app/pages/ExternalForumList/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,9 @@ export const ExternalForumList: () => JSX.Element = () => {

const getForumEvents = (newLang?: string): void => {
setLoadingPage(true)
// @ts-expect-error
let filters: NDKFilter = { kinds: [34550], limit: pageSize }

// let filters: NDKFilter = { kinds: [34550, 39000], limit: pageSize }
let filters: NDKFilter = { kinds: [39000], limit: pageSize }

if (externalForums && !newLang) {
const array = Array.from(externalForums);
Expand Down

0 comments on commit 9561fe5

Please # to comment.