Add Blinko

This commit is contained in:
DrMxrcy
2025-03-28 13:52:13 -04:00
parent 0180f74eba
commit 270843ba39
4 changed files with 192 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
version: "3.8"
services:
blinko-website:
image: blinkospace/blinko:latest
container_name: blinko-website
environment:
NODE_ENV: production
NEXTAUTH_SECRET: ${nextauth_secret}
DATABASE_URL: postgresql://postgres:${postgres_password}@blinko-postgres:5432/postgres
depends_on:
blinko-postgres:
condition: service_healthy
restart: always
logging:
options:
max-size: "10m"
max-file: "3"
healthcheck:
test: ["CMD", "curl", "-f", "http://blinko-website:1111/"]
interval: 30s
timeout: 10s
retries: 5
start_period: 30s
blinko-postgres:
image: postgres:14
container_name: blinko-postgres
restart: always
environment:
POSTGRES_DB: postgres
POSTGRES_USER: postgres
POSTGRES_PASSWORD: ${postgres_password}
TZ: Asia/Shanghai
volumes:
- blinko-db:/var/lib/postgresql/data
healthcheck:
test: ["CMD", "pg_isready", "-U", "postgres", "-d", "postgres"]
interval: 5s
timeout: 10s
retries: 5
volumes:
blinko-db: {}