* Introduce `docker-compose.yml` for containerized service orchestration. * Update `.gitlab-ci.yml` with new deployment stages and sync mechanisms, including production and dev environments.
15 lines
330 B
YAML
15 lines
330 B
YAML
services:
|
|
gateway:
|
|
image: registry.boomlab.party/rheinsw/demo-websites/main-website
|
|
container_name: main-website
|
|
ports:
|
|
- "25600:3000"
|
|
restart: on-failure
|
|
|
|
server:
|
|
image: registry.boomlab.party/rheinsw/demo-websites/ld1
|
|
container_name: ld1
|
|
ports:
|
|
- "25601:8080"
|
|
restart: on-failure
|