123456789101112131415161718192021222324252627 |
- version: '3'
- services:
- frontend:
- # image: node:20
- image: node:20-alpine
- container_name: dev-frontend
- build:
- context: ./frontend
- dockerfile: Dockerfile.dev
- working_dir: /app
- volumes:
- - ./frontend/src:/app/src/
- - ./frontend/public:/app/public
- # env_file: .env
- environment:
- - NEXT_PUBLIC_ENV=development
- - INFISICAL_TELEMETRY_ENABLED=${TELEMETRY_ENABLED}
- networks:
- - infisical-dev
- command: sh -c "yarn install && yarn dev"
- ports:
- - 3000:3000
-
- networks:
- infisical-dev:
- driver: bridge
|