-
Notifications
You must be signed in to change notification settings - Fork 10
/
compose.tet-youth.yml
81 lines (76 loc) · 1.69 KB
/
compose.tet-youth.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
name: yjdh-tet
services:
postgres:
build:
dockerfile: ./docker/finnish_postgres.Dockerfile
context: ./backend
platform: linux/amd64
restart: on-failure
environment:
POSTGRES_USER: tet
POSTGRES_PASSWORD: tet
POSTGRES_DB: tet
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: te-db
backend:
build:
context: ./backend
dockerfile: ./docker/tet.Dockerfile
target: development
platform: linux/amd64
env_file:
- .env.tet
environment:
DATABASE_URL: postgres://tet:tet@te-db/tet
DATABASE_HOST: te-db.helsinki
volumes:
- ./backend/tet:/app
- ./backend/shared:/shared
- ./backend/tet/media:/var/media
depends_on:
- postgres
container_name: te-backend
youth:
build:
context: ./frontend
dockerfile: Dockerfile-localdevelopment
target: development
args:
PORT: 3000
PROJECT: tet
FOLDER: youth
platform: linux/amd64
volumes:
- ./frontend:/app
- /app/node_modules
- /app/.next
env_file:
- .env.tet
environment:
NEXT_PUBLIC_MOCK_FLAG: 1
container_name: te-youth
local-proxy:
depends_on:
- postgres
- backend
- youth
build:
context: ./localdevelopment/tet-youth/nginx
platform: linux/amd64
container_name: te-local-proxy
volumes:
- ./localdevelopment/tet-youth/nginx/:/etc/nginx/
ports:
- 127.0.0.1:8000:8000
- 127.0.0.1:3001:3001
volumes:
pgdata:
driver: local
networks:
default:
name: helsinki