Files
kami_frontend/deploy/docker-compose-local.yml
danial 85a2da5e2f ci: set up continuous integration and delivery pipeline
- Add .drone.yml file to configure CI/CD pipeline
- Set up Docker build and push to private registry
- Add deployment configuration for development and production environments
- Include health check and environment variable support
2025-03-30 22:34:38 +08:00

20 lines
351 B
YAML

services:
kami_frontend:
build:
context: ../.
dockerfile: ./deploy/Dockerfile
args:
- USE_PROXY=1
container_name: kami_frontend
image: kami_frontend:latest
ports:
- 12400:12400
networks:
- 1panel-network
labels:
createdBy: Developer
networks:
1panel-network:
external: true