mirror of
https://github.com/arthur-pbty/reducelink.git
synced 2026-06-07 23:04:53 +02:00
feat: add LinkResult, Pagination, and StatsCards components; implement server actions for link management and global stats retrieval
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
services:
|
||||
reducelink:
|
||||
image: node:20-alpine
|
||||
container_name: reducelink
|
||||
working_dir: /app
|
||||
volumes:
|
||||
- .:/app
|
||||
- node_modules:/app/node_modules
|
||||
ports:
|
||||
- "3006:3000"
|
||||
environment:
|
||||
- DATABASE_URL=file:./dev.db
|
||||
- NEXT_PUBLIC_BASE_URL=https://reducelink.arthurp.fr
|
||||
command: sh -c "apk add --no-cache openssl libc6-compat && npm install && npx prisma generate && npx prisma migrate deploy && npm run build && npm run start"
|
||||
restart: unless-stopped
|
||||
|
||||
volumes:
|
||||
node_modules:
|
||||
Reference in New Issue
Block a user