mirror of
https://github.com/remvze/moodist.git
synced 2025-12-18 17:34:17 +00:00
- Add Docker deployment configuration with multiple Dockerfile variants - Implement simplified Docker build scripts for better compatibility - Update docker-compose configurations to use walllee/moodist image - Create comprehensive Docker deployment documentation - Add Chinese README (README.zh-CN.md) with full translation - Implement language selection links in both README files - Add quick start guide and Docker deployment instructions in Chinese - Include Docker build and push commands in package.json scripts New files added: - Docker configurations (Dockerfile.* variants) - Docker Compose files (dev, optimized versions) - Build scripts (scripts/*.sh) - Docker deployment documentation (DOCKER_DEPLOY.md) - Chinese README with complete translation
10 lines
170 B
YAML
10 lines
170 B
YAML
version: '3.9'
|
|
services:
|
|
moodist:
|
|
image: walllee/moodist:latest
|
|
logging:
|
|
options:
|
|
max-size: 1g
|
|
restart: always
|
|
ports:
|
|
- '8080:8080'
|