forked from flohansen/hsfl-master-ai-cloud-engineering
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.push.yml
42 lines (36 loc) · 1.15 KB
/
docker-compose.push.yml
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
services:
proxy:
build:
context: ./
dockerfile: ./src/http-proxy-service/Dockerfile
image: onyxmoon/pw-http-proxy-service:${RELEASE_VERSION:-latest}
load-balancer-web:
build:
context: ./
dockerfile: ./src/load-balancer-service/Dockerfile
image: onyxmoon/pw-load-balancer-service:${RELEASE_VERSION:-latest}
web:
build:
context: ./
dockerfile: ./src/web-service/Dockerfile
image: onyxmoon/pw-web-service:${RELEASE_VERSION:-latest}
products:
build:
context: ./
dockerfile: ./src/product-service/Dockerfile
image: onyxmoon/pw-product-service:${RELEASE_VERSION:-latest}
users:
build:
context: ./
dockerfile: ./src/user-service/Dockerfile
image: onyxmoon/pw-user-service:${RELEASE_VERSION:-latest}
shoppinglists:
build:
context: ./
dockerfile: ./src/shoppinglist-service/Dockerfile
image: onyxmoon/pw-shoppinglist-service:${RELEASE_VERSION:-latest}
database-rqlite-test-data-init:
build:
context: ./utils/rqlite-db-init-test/
dockerfile: Dockerfile
image: onyxmoon/pw-database-rqlite-test-data-init:${RELEASE_VERSION:-latest}