This commit is contained in:
2026-03-28 01:06:30 -05:00
parent 796c374d38
commit ecb708790d
35 changed files with 2347 additions and 37 deletions

25
docker-compose.yml Normal file
View File

@@ -0,0 +1,25 @@
services:
memer:
build: .
image: memer:latest
container_name: memer
restart: unless-stopped
ports:
- "3000:3000"
volumes:
- memer-images:/data/images
- memer-db:/data/db
environment:
PORT: "3000"
DATA_DIR: /data
PUBLIC_URL: ${PUBLIC_URL:-http://localhost:3000}
healthcheck:
test: ["CMD", "wget", "-qO-", "http://localhost:3000/api/tags"]
interval: 30s
timeout: 5s
retries: 3
start_period: 15s
volumes:
memer-images:
memer-db: