tangled
alpha
login
or
join now
willdot.net
/
tangled-alert-bot
2
fork
atom
this repo has no description
2
fork
atom
overview
issues
pulls
pipelines
docker-compose file
willdot.net
6 months ago
21295368
623a43a3
+11
-1
2 changed files
expand all
collapse all
unified
split
Dockerfile
docker-compose.yaml
+2
-1
Dockerfile
···
4
4
5
5
COPY . .
6
6
RUN go mod download
7
7
+
COPY . .
7
8
8
8
-
RUN CGO_ENABLED=0 GOOS=linux GOARCH=arm GOARM=5 go build -a -installsuffix cgo -o tangled-alert-bot .
9
9
+
RUN CGO_ENABLED=0 GOOS=linux GOARCH=arm GOARM=5 go build -a -installsuffix cgo -o tangled-alert-bot ./cmd/.
9
10
10
11
FROM alpine:latest
11
12
+9
docker-compose.yaml
···
1
1
+
services:
2
2
+
tangled-alert-bot:
3
3
+
container_name: tangled-alert-bot
4
4
+
image: willdot/tangled-alert-bot
5
5
+
volumes:
6
6
+
- ./data:/app/data
7
7
+
environment:
8
8
+
DATABASE_PATH: "/app/data/"
9
9
+
restart: always