-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
47 lines (40 loc) · 1.07 KB
/
docker-compose.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
version: "3.9" # optional since v1.27.0
services:
avalanche-report:
build: .
ports:
- "4000:4000"
volumes:
- type: volume
source: data-volume
target: /data-volume
volume:
nocopy: true
- "./static:/static"
- "./templates:/templates"
- "./i18n:/i18n"
env_file:
- .env
environment:
RUST_LOG: axum=debug,tower=debug,avalanche_report=debug,migrations=info
AVALANCHE_REPORT: |
data_dir="/data-volume"
listen_address="[::]:4000"
base_url="http://localhost:4000"
default_language_order=["bg-BG", "en-UK"]
forecast_spreadsheet_schema="forecast_spreadsheet_schema.bansko.0.3.1.json"
[templates]
directory="/templates"
[i18n]
directory="/i18n"
[map]
source="OpenTopoMap"
[weather_maps.Windy]
latitude=41.753
longitude=23.432
[weather_maps.Meteoblue]
location_id="todorka-summit_bulgaria_726427"
[static_files]
directory="/static"
volumes:
data-volume: