27 lines
605 B
YAML
27 lines
605 B
YAML
services:
|
|
|
|
arti-angular-app:
|
|
|
|
image: arti-angular-app
|
|
container_name: arti-angular-app
|
|
restart: always
|
|
|
|
networks:
|
|
- central-net
|
|
|
|
environment:
|
|
TZ: Europe/Warsaw
|
|
|
|
ports:
|
|
- 4200:4200/tcp # exposing port for angular
|
|
|
|
entrypoint: ["ng","-serve","--host", "0.0.0.0", "--port", "4200"]
|
|
|
|
networks:
|
|
central-net:
|
|
name: proxy-net
|
|
external: true
|
|
|
|
|
|
# docker compose --profile base --profile base-dv --profile production --file 3.jenkins-with-docker-compose.yml --env-file artik-docker.env up --detach
|