23 lines
553 B
YAML
23 lines
553 B
YAML
services:
|
|
mirofish:
|
|
image: ghcr.io/666ghj/mirofish:latest
|
|
# 加速镜像(如拉取缓慢可替换上方地址)
|
|
# image: ghcr.nju.edu.cn/666ghj/mirofish:latest
|
|
container_name: mirofish
|
|
env_file:
|
|
- .env
|
|
ports:
|
|
- "3000:3000"
|
|
- "5001:5001"
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./backend/uploads:/app/backend/uploads
|
|
# Add to each service in docker-compose.yml
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
cpus: '2.0'
|
|
memory: 4G
|
|
reservations:
|
|
memory: 1G
|