File tree Expand file tree Collapse file tree 3 files changed +29
-0
lines changed Expand file tree Collapse file tree 3 files changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -444,6 +444,7 @@ A collection of delicious docker recipes.
444
444
- [x] tensorflow
445
445
- [x] serving
446
446
- [x] tile38/tile38
447
+ - [x] traccar/traccar
447
448
- [x] traefik
448
449
- [x] trinodb/trino
449
450
- [x] louislam/uptime-kuma
Original file line number Diff line number Diff line change
1
+ traccar
2
+ =======
3
+
4
+ [ Traccar] [ 1 ] is a free and open source modern GPS tracking system.
5
+
6
+
7
+ ``` bash
8
+ $ mkdir -p data/{conf,data,logs}
9
+ $ cd data/conf
10
+ $ wget https://github.com/traccar/traccar/raw/master/setup/default.xml
11
+ $ wget https://github.com/traccar/traccar/raw/master/setup/traccar.xml
12
+ $ docker-compose up -d
13
+ ```
14
+
15
+ [ 1 ] : https://www.traccar.org/
Original file line number Diff line number Diff line change
1
+ version : " 3.8"
2
+ services :
3
+ traccar :
4
+ image : traccar/traccar:5-alpine
5
+ ports :
6
+ - " 8082:8082"
7
+ - " 5000-5150:5000-5150/tcp"
8
+ - " 5000-5150:5000-5150/udp"
9
+ volumes :
10
+ - ./data/conf:/opt/traccar/conf
11
+ - ./data/data:/opt/traccar/data
12
+ - ./data/logs:/opt/traccar/logs
13
+ restart : unless-stopped
You can’t perform that action at this time.
0 commit comments