mirror of
https://github.com/toast-ts/Daggerbot-TS.git
synced 2024-11-18 00:31:00 -05:00
Compare commits
3 Commits
9d2d08105c
...
b366680895
Author | SHA1 | Date | |
---|---|---|---|
|
b366680895 | ||
|
6399099ccb | ||
|
ebca16e5a5 |
16
.dockerignore
Normal file
16
.dockerignore
Normal file
@ -0,0 +1,16 @@
|
||||
# Pointless stuff
|
||||
Dockerfile
|
||||
docker-compose.yml
|
||||
.ncurc.json
|
||||
.env
|
||||
.mailmap
|
||||
.github
|
||||
.vscode
|
||||
.github
|
||||
postgres-replica-stuff
|
||||
README.md
|
||||
ufwReject.sh
|
||||
|
||||
# Startup files
|
||||
startWithYarn.cjs
|
||||
botStartup.bat
|
11
Dockerfile
Normal file
11
Dockerfile
Normal file
@ -0,0 +1,11 @@
|
||||
FROM node:21.1.0-bookworm-slim
|
||||
ENV YARN_VERSION 4.0.2
|
||||
RUN yarn policies set-version $YARN_VERSION
|
||||
RUN apt update -y && apt upgrade -y && apt install -y git
|
||||
RUN npm install -g typescript
|
||||
WORKDIR /Daggerbot
|
||||
RUN git config --global --add safe.directory /Daggerbot
|
||||
COPY tsconfig.json package.json yarn.lock .yarnrc.yml ./
|
||||
RUN yarn workspaces focus
|
||||
|
||||
CMD [ "yarn", "node", "." ]
|
@ -1,4 +1,12 @@
|
||||
services:
|
||||
bot:
|
||||
container_name: daggerbot-prod
|
||||
build: .
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ./.git:/Daggerbot/.git:rw
|
||||
- ./src/:/Daggerbot/src/:rw
|
||||
- ./dist/:/Daggerbot/dist/:rw
|
||||
cache:
|
||||
container_name: redis-cache
|
||||
image: redis/redis-stack-server:7.2.0-v6
|
||||
|
@ -1,13 +1,19 @@
|
||||
# This is for the Slave node, Master node is in the root directory of the same file.
|
||||
services:
|
||||
cache-slave:
|
||||
container_name: redis-cache-slave
|
||||
image: redis/redis-stack-server:7.2.0-v6
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 6379:6379/tcp
|
||||
db-slave:
|
||||
container_name: postgres-slave
|
||||
image: postgres:16.1-alpine3.19
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 5433:5432/tcp
|
||||
- 5432:5432/tcp
|
||||
volumes:
|
||||
- /var/lib/docker/volumes/daggerbot-db-slave:/var/lib/postgresql/data:rw
|
||||
- /var/lib/docker/volumes/daggerbot-db:/var/lib/postgresql/data:rw
|
||||
- ./configs/postgres-hba.conf:/var/lib/postgresql/data/pg_hba.conf:rw
|
||||
- ./configs/postgres.conf:/var/lib/postgresql/data/postgresql.conf:rw
|
||||
environment:
|
||||
|
Loading…
Reference in New Issue
Block a user