Files
smesh/docker-compose.dev.yml
mleku 13b3b82443 refactor: rebrand from Jumble to Smesh
- Replace all Jumble branding with Smesh throughout codebase
- Add new Smesh logo images (light/dark themes)
- Update Logo component to use PNG images with theme support
- Update URLs to git.mleku.dev/mleku/smesh
- Rename JumbleTranslate to SmeshTranslate
- Update all i18n locale files with new branding
- Add system theme detection CSS to prevent flash on load
- Update PWA manifest, docker-compose, and config files

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-26 09:43:18 +02:00

45 lines
932 B
YAML

services:
smesh:
container_name: smesh-nginx
build:
context: .
dockerfile: Dockerfile
args:
VITE_PROXY_SERVER: ${SMESH_PROXY_SERVER_URL:-http://localhost:8090}
ports:
- '8089:80'
restart: unless-stopped
networks:
- smesh
proxy-server:
image: ghcr.io/danvergara/smesh-proxy-server:latest
environment:
- ALLOW_ORIGIN=${SMESH_SOCIAL_URL:-http://localhost:8089}
- SMESH_PROXY_GITHUB_TOKEN=${SMESH_PROXY_GITHUB_TOKEN}
- ENABLE_PPROF=true
- PORT=8080
ports:
- '8090:8080'
networks:
- smesh
nostr-relay:
image: scsibug/nostr-rs-relay:latest
container_name: smesh-nostr-relay
ports:
- '7000:8080'
environment:
- RUST_LOG=warn,nostr_rs_relay=info
volumes:
- relay-data:/usr/src/app/db
networks:
- smesh
restart: unless-stopped
volumes:
relay-data:
networks:
smesh: