Files
Frontend/docker-compose-prod.yml
T

22 lines
492 B
YAML
Raw Normal View History

2026-03-21 17:33:39 +03:30
services:
frontend:
build:
context: .
dockerfile: Dockerfile
2026-05-03 13:43:05 +03:30
args:
DOCKER_REGISTRY_MIRROR: mirror-docker.runflare.com
DEBIAN_MIRROR: mirror-linux.runflare.com/debian
NPM_REGISTRY_MIRROR: https://mirror-npm.runflare.com/
2026-03-21 17:33:39 +03:30
container_name: croplogic-frontend
restart: unless-stopped
env_file:
- .env
environment:
- NODE_ENV=production
2026-03-24 15:50:53 +03:30
networks:
- crop_network
networks:
crop_network:
2026-05-03 13:43:05 +03:30
external: true