Skip to content

Commit 3a868e3

Browse files
committed
add traccar
1 parent 640445a commit 3a868e3

File tree

3 files changed

+29
-0
lines changed

3 files changed

+29
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -444,6 +444,7 @@ A collection of delicious docker recipes.
444444
- [x] tensorflow
445445
- [x] serving
446446
- [x] tile38/tile38
447+
- [x] traccar/traccar
447448
- [x] traefik
448449
- [x] trinodb/trino
449450
- [x] louislam/uptime-kuma

traccar/README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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/

traccar/docker-compose.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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

0 commit comments

Comments
 (0)