Files
demo-websites/main-website/.gitlab-ci.yml
Thatsaphorn Atchariyaphap e20f6dbb6a Add deployment automation
* Introduce `docker-compose.yml` for containerized service orchestration.
* Update `.gitlab-ci.yml` with new deployment stages and sync mechanisms, including production and dev environments.
2025-06-07 10:41:54 +02:00

18 lines
377 B
YAML

# Main Website - Build
build_main:
stage: build
extends: .build-next-template
variables:
WORKDIR_PATH: main-website
# Main Website - Dockerize
docker_main:
stage: dockerize
extends: .docker-build-template
variables:
IMAGE_NAME: main-website
WORKDIR_PATH: main-website
DOCKERFILE_PATH: Dockerfile
needs:
- job: build_main
artifacts: true