FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
reitti/docker-compose-dev.yml at main · dedicatedcode/reitti · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
dedicatedcode
/
reitti
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
74
Star
2.4k
Code
Issues
37
Pull requests
1
Discussions
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
reitti
/
docker-compose-dev.yml
Copy path
More file actions
More file actions
Latest commit
History
History
History
86 lines (86 loc) · 2.11 KB
Breadcrumbs
reitti
/
docker-compose-dev.yml
Copy path
File metadata and controls
86 lines (86 loc) · 2.11 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
services
:
postgis
:
image
:
postgis/postgis:17-3.5-alpine
environment
:
POSTGRES_USER
:
reitti
POSTGRES_PASSWORD
:
reitti
POSTGRES_DB
:
reittidb
ports
:
-
"
5432:5432
"
volumes
:
-
postgis-data:/var/lib/postgresql/data
healthcheck
:
test
:
["CMD-SHELL", "pg_isready -U reitti -d reittidb"]
interval
:
10s
timeout
:
5s
retries
:
5
rabbitmq
:
image
:
rabbitmq:3-management-alpine
ports
:
-
"
5672:5672
"
#
AMQP protocol port
-
"
15672:15672
"
#
Management UI port
-
"
1883:1883
"
#
MQTT port
environment
:
RABBITMQ_DEFAULT_USER
:
reitti
RABBITMQ_DEFAULT_PASS
:
reitti
volumes
:
-
rabbitmq-data:/var/lib/rabbitmq
-
./docker/rabbitmq/enabled_plugins:/etc/rabbitmq/enabled_plugins:ro
healthcheck
:
test
:
["CMD", "rabbitmq-diagnostics", "check_port_connectivity"]
interval
:
30s
timeout
:
10s
retries
:
5
mqtt
:
image
:
eclipse-mosquitto:2.0.18
ports
:
-
"
1884:1883
"
redis
:
image
:
redis:7-alpine
ports
:
-
"
6379:6379
"
volumes
:
-
redis-data:/data
-
./docker/redis-dev/redis.conf:/usr/local/etc/redis/redis.conf:ro
command
:
redis-server /usr/local/etc/redis/redis.conf
healthcheck
:
test
:
["CMD", "redis-cli", "-u", "redis://reitti:reitti@localhost:6379", "ping"]
interval
:
10s
timeout
:
5s
retries
:
5
#
photon:
#
image: rtuszik/photon-docker:1.3.0
#
environment:
#
- UPDATE_STRATEGY=PARALLEL
#
- REGION=de
#
ports:
#
- "2322:2322"
#
volumes:
#
- photon-data:/photon/data
ot-recorder
:
image
:
owntracks/recorder:latest
depends_on
:
rabbitmq
:
condition
:
service_healthy
environment
:
-
OTR_HOST=rabbitmq
-
OTR_USER=reitti
-
OTR_PASS=reitti
ports
:
-
"
8083:8083
"
volumes
:
-
ot-recorder-data:/store
tile-cache
:
build
:
./docker/tiles-cache
restart
:
unless-stopped
ports
:
-
"
8084:80
"
volumes
:
-
tile-cache-data:/var/cache/nginx
volumes
:
postgis-data
:
redis-data
:
rabbitmq-data
:
photon-data
:
ot-recorder-data
:
tile-cache-data
:
Back
|
FazBrowse Home
|
New Git URL