celery英语_蔬菜介绍:芹菜 Celery

蔬菜介绍:芹菜 Celery

As much a household staple as onions or potatoes, celery is valued for its crisp texture and distinctive flavour. It is widely used as an appetiser, a salad ingredient, and an addition to many cooked dishes. A bunch or head of celery is made up of individual stalks or ribs. These ribs are naturally crisp due to the rigidity of the plant's cell walls and the high water content within the cells. In fact, celery is mostly water and therefore exceptionally low in calories, making it a first-rate snack food for people trying to control their weight. Although it is not especially high in nutrients (largely because of its high water content), it does have a respectable amount of potassium.

Buying

Light green celery stalks with a glossy surface tend to taste best. (Dark green stalks have slightly more nutrients, but are apt to be stringy.) If not wrapped, celery should be sprinkled with water to prevent wilting. Look first at the bunch, it should be compact and well shaped and then examine the leaves, which should be green and fresh looking. The leaves are a good guide to the celery's overall condition. The stalks and leaf stems should feel firm and crisp, as if they would snap when broken in half, and should be free of cracks or bruises.

Inspect both the outer and inner surfaces of stalks for discoloured spots or bruises, or for patches that appear to be trimmed off-, grocers sometimes slice off bruised or rotting areas, and such stalks won't keep as long as undamaged celery.

Storage

Refrigerate celery in a plastic bag in the salad drawer, where it can keep for up to two weeks. Keep the vegetable away from the coldest areas of the refrigerator, the back and the side walls, since celery freezes easily, thus damaging the cell walls. Once thawed, the celery will be limp and watery. Sprinkle the stalks occasionally with water to maintain freshness, since celery dehydrates easily. If the stalks have begun to wilt by the time you want to use them, refresh them by submerging them in ice water for several minutes.

Preparation

Rinse celery thoroughly to remove sand and dirt. To serve it raw, cut the stalks to the desired length just before serving them. (If you want to cut the celery in advance, let it stand in ice water for up to an hour before serving.) If stalks are stringy, they can be peeled with a vegetable peeler. Trim off the leaves and knobby tops and if you wish, save them to add flavour and texture to salads, broths, soups, and stews.

When added to other dishes, raw or cooked celery is generally cut into smaller pieces—you can slice the ribs diagonally, chop or dice them, or slice them lengthwise.

我想将frontend 也是用volumes,将其映射到/app/frontend目录,在/app/frontend下install以及build,如何实现 docker-compose.yml文件: version: '3' services: frontend: build: context: ./frontend dockerfile: Dockerfile ports: - 8010:80 restart: always backend: build: context: ./backend dockerfile: Dockerfile volumes: - /app/backend:/app environment: - CELERY_BROKER_URL=redis://redis:6379/0 command: python manage.py runserver 0.0.0.0:8000 ports: - 8011:8000 restart: always celery-worker: build: context: ./backend dockerfile: Dockerfile volumes: - /app/backend:/app environment: - CELERY_BROKER_URL=redis://redis:6379/0 command: celery -A server worker -l info --pool=solo --concurrency=1 depends_on: - redis - backend restart: always celery-beat: build: context: ./backend dockerfile: Dockerfile volumes: - /app/backend:/app environment: - CELERY_BROKER_URL=redis://redis:6379/0 command: celery -A server beat -l info --scheduler django_celery_beat.schedulers:DatabaseScheduler depends_on: - redis - backend restart: always redis: image: redis:latest ports: - 6379:6379 restart: always mysql: image: mysql:latest environment: - MYSQL_ROOT_PASSWORD=sacfxSql258147@ ports: - 8016:3306 volumes: - ./mysql:/var/lib/mysql restart: always frontend:dockerfile文件 FROM node:16.18.1 WORKDIR /app/frontend COPY package*.json ./ RUN npm install COPY . . RUN npm run build:prod FROM nginx:latest COPY --from=0 /app/frontend/dist/ /usr/share/nginx/html EXPOSE 80 CMD ["nginx", "-g", "daemon off;"]
07-14
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值