From 843343e7c3958a4d2a6f66148c393e1ceaa5b063 Mon Sep 17 00:00:00 2001 From: drifty Date: Thu, 16 Jan 2025 12:46:25 +0530 Subject: [PATCH] Create compose.yml --- docker-compose-files/hoyocheckin/compose.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 docker-compose-files/hoyocheckin/compose.yml diff --git a/docker-compose-files/hoyocheckin/compose.yml b/docker-compose-files/hoyocheckin/compose.yml new file mode 100644 index 0000000..838fc7f --- /dev/null +++ b/docker-compose-files/hoyocheckin/compose.yml @@ -0,0 +1,15 @@ +version: '3' +services: + hoyolab_bot: + container_name: hoyolab_bot + image: driftywinds/hoyocheckin:latest +# build: +# context: . +# dockerfile: Dockerfile + env_file: + - .env + volumes: + - ./app:/usr/src/app + - /usr/src/app/node_modules + - ./data:/app/data + command: sh -c "npm install && npm run build && node dist/bot.js"