Skip to content

Commit

Permalink
update docker-compose to use /nfsdocker/nfs
Browse files Browse the repository at this point in the history
  • Loading branch information
im-calvin committed Nov 1, 2023
1 parent ac949ea commit 412b6e9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
version: '3'
version: "3"
services:
mittens:
image: imcalvin/mittens:latest
restart: always
volumes:
- /nfs/mittens/data:/app/data
- /nfsdocker/nfs/mittens/data:/app/data
environment:
DOTENV_KEY: ${DOTENV_KEY}
DOTENV_KEY: ${DOTENV_KEY}
2 changes: 1 addition & 1 deletion src/commands/list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const list: CommandData = {
return;
}

const streamerNames = discordUserSubs.map((sub) => sub.streamer.name);
const streamerNames = discordUserSubs.map((sub: DiscordUserSubscription) => sub.streamer.name);
await interaction.editReply(`**Your subscriptions:** \n${streamerNames.join("\n")}`);
},
};
Expand Down

0 comments on commit 412b6e9

Please sign in to comment.