version: "3.9" services: app: build: context: . dockerfile: Dockerfile args: - GIT_REPO_URL=${GIT_REPO_URL} - GIT_BRANCH=${GIT_BRANCH:-main} - GIT_COMMIT=${GIT_COMMIT} ports: - "3001:3000" volumes: - ./data:/app/data environment: - NODE_ENV=production restart: unless-stopped