Add working Dockerfile

This commit is contained in:
Jesse Wierzbinski 2023-11-26 19:30:57 -10:00
parent 8b442c241c
commit 2c82cffb58
No known key found for this signature in database
8 changed files with 27 additions and 15 deletions

View file

@ -13,7 +13,7 @@ const federationQueue = new Queue("federation", {
host: config.redis.queue.host,
port: config.redis.queue.port,
password: config.redis.queue.password,
db: config.redis.queue.database,
db: config.redis.queue.database || undefined,
},
});

View file

@ -114,7 +114,7 @@ export const federationWorker = new Worker(
host: config.redis.queue.host,
port: config.redis.queue.port,
password: config.redis.queue.password,
db: config.redis.queue.database,
db: config.redis.queue.database || undefined,
},
removeOnComplete: {
count: 400,