36 lines
734 B
YAML
36 lines
734 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
|
|
|
|
|
|
#CMD ["ng", "serve", "--host", "0.0.0.0", "--port", "4200"]
|
|
|
|
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
|