Initial commit: all siklos docker-compose files

This commit is contained in:
2026-04-29 10:42:41 -05:00
commit c07e58865d
18 changed files with 488 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
services:
postgres:
image: postgres:16-alpine
ports:
- "5432:5432"
restart: always
environment:
POSTGRES_PASSWORD: mysecretpassword
volumes:
- ./pgdata:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 5s
timeout: 5s
retries: 10
linkwarden:
image: ghcr.io/linkwarden/linkwarden:latest
restart: always
ports:
- "3015:3000"
environment:
- DATABASE_URL=postgresql://postgres:mysecretpassword@postgres:5432/postgres
- NEXTAUTH_URL=http://localhost:3000
- NEXTAUTH_SECRET=super-secret-random-string-12345
depends_on:
postgres:
condition: service_healthy