-
Notifications
You must be signed in to change notification settings - Fork 10
/
compose.benefit.yml
102 lines (95 loc) · 2.23 KB
/
compose.benefit.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
name: yjdh-benefit
services:
postgres:
build:
context: ./backend
dockerfile: ./docker/finnish_postgres.Dockerfile
restart: on-failure
environment:
POSTGRES_USER: benefit
POSTGRES_PASSWORD: benefit
POSTGRES_DB: benefit
LC_COLLATE: "fi_FI.UTF-8"
LC_CTYPE: "fi_FI.UTF-8"
ports:
- 127.0.0.1:5434:5432
volumes:
- pgdata:/var/lib/postgresql/data
container_name: benefit-db
backend:
build:
context: ./backend
dockerfile: ./docker/benefit-ubi-arm.Dockerfile
target: development
env_file:
- .env.benefit-backend
environment:
DATABASE_URL: postgres://benefit:benefit@benefit-db/benefit
DATABASE_HOST: benefit-db.helsinki
volumes:
- ./backend/benefit:/app
- ./backend/shared:/shared
depends_on:
- postgres
container_name: benefit-backend
applicant:
build:
context: ./frontend
dockerfile: Dockerfile-localdevelopment
target: development
args:
PORT: 3000
PROJECT: benefit
FOLDER: applicant
volumes:
- ./frontend:/app
- /app/node_modules
- /app/.next
env_file:
- .env.benefit-applicant
container_name: benefit-applicant
handler:
build:
context: ./frontend
dockerfile: Dockerfile-localdevelopment
target: development
args:
PORT: 3100
PROJECT: benefit
FOLDER: handler
volumes:
- ./frontend:/app
- /app/node_modules
- /app/.next
env_file:
- .env.benefit-handler
container_name: benefit-handler
local-proxy:
depends_on:
- postgres
- backend
- applicant
- handler
build:
context: ./localdevelopment/benefit/nginx
container_name: benefit-local-proxy
volumes:
- ./localdevelopment/benefit/nginx/:/etc/nginx/
ports:
- 127.0.0.1:8000:8000
- 127.0.0.1:3000:3000
- 127.0.0.1:3100:3100
mailhog:
image: "mailhog/mailhog@sha256:8d76a3d4ffa32a3661311944007a415332c4bb855657f4f6c57996405c009bea"
ports:
- 1025:1025
- 8025:8025
container_name: benefit-mailhog
networks:
- default
volumes:
pgdata:
driver: local
networks:
default:
name: helsinki