-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
66 lines (58 loc) · 1.38 KB
/
docker-compose.dev.yml
File metadata and controls
66 lines (58 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# Copyright (c) 2025 Eclipse Foundation.
#
# This program and the accompanying materials are made available under the
# terms of the MIT License which is available at
# https://opensource.org/licenses/MIT.
#
# SPDX-License-Identifier: MIT
services:
playground-be:
build:
context: .
image: ghcr.io/${GITHUB_REPOSITORY_OWNER:-eclipse-autowrx}/playground-be:${TAG:-latest}
command: yarn dev -L
volumes:
- .:/usr/src/playground-be
restart: no
env_file:
- .env
upload:
command: npm start
restart: no
env_file:
- .env
playground-db:
ports:
- '27017:27017'
restart: no
kong:
restart: no
genai:
platform: linux/amd64
container_name: ${ENV:-dev}-genai
image: boschvn/genai:latest
networks:
- node-network
env_file:
- .env
restart: no
cache:
platform: linux/amd64
container_name: ${ENV:-dev}-cache
image: boschvn/cache:latest
networks:
- node-network
restart: no
homologation:
platform: linux/amd64
container_name: ${ENV:-dev}-homologation-node
image: boschvn/homologation-node:latest
networks:
- node-network
restart: no
environment:
- HOMOLOGATION_AUTH_CLIENT_ID=${HOMOLOGATION_AUTH_CLIENT_ID}
- HOMOLOGATION_AUTH_CLIENT_SECRET=${HOMOLOGATION_AUTH_CLIENT_SECRET}
inventory-be:
command: yarn dev -L
restart: no