-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.build.yml
More file actions
37 lines (32 loc) · 998 Bytes
/
Copy pathdocker-compose.build.yml
File metadata and controls
37 lines (32 loc) · 998 Bytes
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
# Sub-10b — Local-build override.
# Overlays docker-compose.prod.yml; reinstates `build:` blocks so
# `docker compose -f docker-compose.prod.yml -f docker-compose.build.yml up --build`
# builds images from local Dockerfiles instead of pulling from ghcr.io.
# Used by CI on PRs (where no ghcr.io image exists yet) and for local
# smoke testing.
services:
migrator:
build:
context: ./backend
dockerfile: src/CCE.Seeder/Dockerfile
image: cce-migrator:dev
api-external:
build:
context: ./backend
dockerfile: src/CCE.Api.External/Dockerfile
image: cce-api-external:dev
api-internal:
build:
context: ./backend
dockerfile: src/CCE.Api.Internal/Dockerfile
image: cce-api-internal:dev
web-portal:
build:
context: .
dockerfile: frontend/apps/web-portal/Dockerfile
image: cce-web-portal:dev
admin-cms:
build:
context: .
dockerfile: frontend/apps/admin-cms/Dockerfile
image: cce-admin-cms:dev