services: app: build: context: . dockerfile: Dockerfile ports: - "3000:3000" environment: - DATABASE_URL=postgres://postgres:password@postgres:5432/alert_message_center - FEISHU_APP_ID=${FEISHU_APP_ID} - FEISHU_APP_SECRET=${FEISHU_APP_SECRET} # ... other envs depends_on: - postgres postgres: image: postgres:17-alpine restart: always environment: POSTGRES_USER: postgres POSTGRES_PASSWORD: password POSTGRES_DB: alert_message_center ports: - "5432:5432" volumes: - postgres_data:/var/lib/postgresql/data volumes: postgres_data: