- 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
20 lines
351 B
YAML
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
|