-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update docker-publish.yml * fix: Deleted .DS_store * Fix: changes Env vars * fix: moved the source files to a dir named src * Feat: Add support for discord webhooks * chore: uppdated the node version * fix: fixed the yaml indenting * Deleted .env smaple file and moved it to readme * moved the enviorment variables to readme * removed container name * changed the .env for discord webhook supprort * migrated from discord js to fetch * added list of states to prevent bugs due to typos
- Loading branch information
Showing
12 changed files
with
615 additions
and
128 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
FROM node:16-alpine | ||
FROM node:18-alpine | ||
WORKDIR /app | ||
COPY package*.json ./ | ||
RUN npm install | ||
COPY . /app/ | ||
CMD ["node", "index.js"] | ||
COPY ./src /app/ | ||
CMD ["node", "/app/src/index.js"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
version: '3.9' | ||
services: | ||
notify: | ||
restart: unless-stopped | ||
image: notify:latest | ||
container_name: hacker-notify | ||
env_file: .env | ||
restart: unless-stopped | ||
image: hackerspace-notify:latest | ||
env_file: .env | ||
|
Oops, something went wrong.