Compare commits

..

2 commits

Author SHA1 Message Date
b0e35c574c
Added adapter
All checks were successful
Docker Deploy / build-and-push (push) Successful in 1m10s
2025-01-23 00:12:38 -06:00
a3b1d94823
Added adapter 2025-01-23 00:11:58 -06:00
2 changed files with 2 additions and 3 deletions

View file

@ -3,6 +3,7 @@ WORKDIR /app
COPY . . COPY . .
RUN npm i -g pnpm
RUN pnpm install RUN pnpm install
RUN pnpm run build RUN pnpm run build

View file

@ -2,10 +2,8 @@ services:
app: app:
image: ${IMAGE} image: ${IMAGE}
ports: ports:
- "${APP_PORT}:3000" - "${APP_PORT}:4321"
environment: environment:
- HOST=0.0.0.0
- PORT=3000
- SMTP_HOST=${SMTP_HOST} - SMTP_HOST=${SMTP_HOST}
- SMTP_PORT=${SMTP_PORT} - SMTP_PORT=${SMTP_PORT}
- SMTP_USER=${SMTP_USER} - SMTP_USER=${SMTP_USER}