2026-03-28 01:06:30 -05:00
|
|
|
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}
|
2026-03-28 01:23:53 -05:00
|
|
|
ADMIN_USER: ${ADMIN_USER:-admin}
|
|
|
|
|
ADMIN_PASS: ${ADMIN_PASS:-changeme}
|
2026-03-28 01:06:30 -05:00
|
|
|
healthcheck:
|
|
|
|
|
test: ["CMD", "wget", "-qO-", "http://localhost:3000/api/tags"]
|
|
|
|
|
interval: 30s
|
|
|
|
|
timeout: 5s
|
|
|
|
|
retries: 3
|
|
|
|
|
start_period: 15s
|
|
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
|
memer-images:
|
|
|
|
|
memer-db:
|