forked from tarampampam/mikrotik-hosts-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
52 lines (47 loc) · 1.5 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
48
49
50
51
52
version: '3.8'
volumes:
tmp-data: {}
redis-data: {}
golint-go: {}
golint-cache: {}
services:
app: &app-service
image: golang:1.21-buster # Image page: <https://hub.docker.com/_/golang>
working_dir: /src
environment:
HOME: /tmp
GOPATH: /tmp
volumes:
- /etc/passwd:/etc/passwd:ro
- /etc/group:/etc/group:ro
- .:/src:rw
- tmp-data:/tmp:rw
security_opt: [no-new-privileges:true]
web:
<<: *app-service
ports:
- '8080:8080/tcp' # Open <http://127.0.0.1:8080>
command: go run ./cmd/mikrotik-hosts-parser serve --config ./configs/config.yml --resources-dir ./web --caching-engine redis --redis-dsn "redis://redis:6379/0"
depends_on:
redis: {condition: service_healthy}
redis:
image: redis:7-alpine # Image page: <https://hub.docker.com/_/redis>
volumes:
- redis-data:/data:rw
ports:
- '6379/tcp'
healthcheck:
test: ['CMD', 'redis-cli', 'ping']
interval: 500ms
timeout: 1s
security_opt: [no-new-privileges:true]
golint:
image: golangci/golangci-lint:v1.56-alpine # Image page: <https://hub.docker.com/r/golangci/golangci-lint>
environment:
GOLANGCI_LINT_CACHE: /tmp/golint # <https://github.com/golangci/golangci-lint/blob/v1.33.0/internal/cache/default.go#L68>
volumes:
- golint-go:/go:rw # go dependencies will be downloaded on each run without this
- golint-cache:/tmp/golint:rw
- .:/src:ro
working_dir: /src
security_opt: [no-new-privileges:true]