this repo has no description

docker-compose file

Changed files
+11 -1
+2 -1
Dockerfile
··· 4 4 5 5 COPY . . 6 6 RUN go mod download 7 + COPY . . 7 8 8 - RUN CGO_ENABLED=0 GOOS=linux GOARCH=arm GOARM=5 go build -a -installsuffix cgo -o tangled-alert-bot . 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 + services: 2 + tangled-alert-bot: 3 + container_name: tangled-alert-bot 4 + image: willdot/tangled-alert-bot 5 + volumes: 6 + - ./data:/app/data 7 + environment: 8 + DATABASE_PATH: "/app/data/" 9 + restart: always