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.
This commit is contained in:
14
docker-compose.yml
Normal file
14
docker-compose.yml
Normal file
@@ -0,0 +1,14 @@
|
||||
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
|
||||
Reference in New Issue
Block a user