Files
NoteNextra-origin/docker/docker-compose.yaml
Trance-0 a86f298001 Update docker-compose.yaml
try build id
2025-11-03 12:32:43 -06:00

34 lines
838 B
YAML

name: notenextra
# variables:
# version: 1.1
# build_id: ${env.BUILD_ID}
services:
# you may need to update relative directories if you move this file
# default created directories is /docker/docker-compose.yaml
notenextra-math:
build:
context: ../
dockerfile: ./docker/math/Dockerfile
tags:
- trance0/notenextra-math:${version}.${env.BUILD_ID}
restart: on-failure:5
ports:
- 13001:4200
notenextra-cse:
build:
context: ../
dockerfile: ./docker/cse/Dockerfile
tags:
- trance0/notenextra-cse:${version}.${env.BUILD_ID}
restart: on-failure:5
ports:
- 13002:4200
nginx:
image: nginx:latest
ports:
- 13000:80
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf
depends_on:
- notenextra-math
- notenextra-cse