mirror of
https://github.com/offen/docker-volume-backup.git
synced 2025-12-06 09:38:01 +01:00
Compare commits
19 Commits
v2.36.1
...
v2.36.0-al
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
316a7a6ab1 | ||
|
|
7f2139143c | ||
|
|
174f85fabd | ||
|
|
7af5fb41a7 | ||
|
|
cfa5f073d2 | ||
|
|
d0f3f41fe7 | ||
|
|
ba095ea753 | ||
|
|
6d0e96ec40 | ||
|
|
a430772e29 | ||
|
|
4e38760e5a | ||
|
|
6a49a53bc3 | ||
|
|
35e6d01c93 | ||
|
|
1ee0b43294 | ||
|
|
c337b35a06 | ||
|
|
8a625b4a5a | ||
|
|
e3062a4df7 | ||
|
|
5de5046f19 | ||
|
|
27017e69d0 | ||
|
|
4b79a05971 |
2
.github/workflows/deploy-docs.yml
vendored
2
.github/workflows/deploy-docs.yml
vendored
@@ -19,7 +19,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v3
|
||||||
- name: Setup Ruby
|
- name: Setup Ruby
|
||||||
uses: ruby/setup-ruby@v1
|
uses: ruby/setup-ruby@v1
|
||||||
with:
|
with:
|
||||||
|
|||||||
4
.github/workflows/golangci-lint.yml
vendored
4
.github/workflows/golangci-lint.yml
vendored
@@ -15,8 +15,8 @@ jobs:
|
|||||||
name: lint
|
name: lint
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v3
|
||||||
- uses: actions/setup-go@v5
|
- uses: actions/setup-go@v4
|
||||||
with:
|
with:
|
||||||
go-version: '1.21'
|
go-version: '1.21'
|
||||||
cache: false
|
cache: false
|
||||||
|
|||||||
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@@ -13,7 +13,7 @@ jobs:
|
|||||||
contents: read
|
contents: read
|
||||||
steps:
|
steps:
|
||||||
- name: Check out the repo
|
- name: Check out the repo
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v2
|
uses: docker/setup-qemu-action@v2
|
||||||
|
|||||||
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
@@ -10,7 +10,7 @@ jobs:
|
|||||||
test:
|
test:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v2
|
uses: docker/setup-buildx-action@v2
|
||||||
|
|||||||
@@ -37,9 +37,7 @@ type Config struct {
|
|||||||
BackupRetentionDays int32 `split_words:"true" default:"-1"`
|
BackupRetentionDays int32 `split_words:"true" default:"-1"`
|
||||||
BackupPruningLeeway time.Duration `split_words:"true" default:"1m"`
|
BackupPruningLeeway time.Duration `split_words:"true" default:"1m"`
|
||||||
BackupPruningPrefix string `split_words:"true"`
|
BackupPruningPrefix string `split_words:"true"`
|
||||||
BackupStopContainerLabel string `split_words:"true"`
|
BackupStopContainerLabel string `split_words:"true" default:"true"`
|
||||||
BackupStopDuringBackupLabel string `split_words:"true" default:"true"`
|
|
||||||
BackupStopServiceTimeout time.Duration `split_words:"true" default:"5m"`
|
|
||||||
BackupFromSnapshot bool `split_words:"true"`
|
BackupFromSnapshot bool `split_words:"true"`
|
||||||
BackupExcludeRegexp RegexpDecoder `split_words:"true"`
|
BackupExcludeRegexp RegexpDecoder `split_words:"true"`
|
||||||
BackupSkipBackendsFromPrune []string `split_words:"true"`
|
BackupSkipBackendsFromPrune []string `split_words:"true"`
|
||||||
|
|||||||
@@ -5,7 +5,6 @@ import (
|
|||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"os"
|
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
@@ -42,9 +41,9 @@ func scaleService(cli *client.Client, serviceID string, replicas uint64) ([]stri
|
|||||||
return response.Warnings, nil
|
return response.Warnings, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func awaitContainerCountForService(cli *client.Client, serviceID string, count int, timeoutAfter time.Duration) error {
|
func awaitContainerCountForService(cli *client.Client, serviceID string, count int) error {
|
||||||
poll := time.NewTicker(time.Second)
|
poll := time.NewTicker(time.Second)
|
||||||
timeout := time.NewTimer(timeoutAfter)
|
timeout := time.NewTicker(5 * time.Minute)
|
||||||
defer timeout.Stop()
|
defer timeout.Stop()
|
||||||
defer poll.Stop()
|
defer poll.Stop()
|
||||||
|
|
||||||
@@ -52,8 +51,7 @@ func awaitContainerCountForService(cli *client.Client, serviceID string, count i
|
|||||||
select {
|
select {
|
||||||
case <-timeout.C:
|
case <-timeout.C:
|
||||||
return fmt.Errorf(
|
return fmt.Errorf(
|
||||||
"awaitContainerCount: timed out after waiting %s for service %s to reach desired container count of %d",
|
"awaitContainerCount: timed out after waiting 5 minutes for service %s to reach desired container count of %d",
|
||||||
timeoutAfter,
|
|
||||||
serviceID,
|
serviceID,
|
||||||
count,
|
count,
|
||||||
)
|
)
|
||||||
@@ -88,23 +86,9 @@ func (s *script) stopContainersAndServices() (func() error, error) {
|
|||||||
}
|
}
|
||||||
isDockerSwarm := dockerInfo.Swarm.LocalNodeState != "inactive"
|
isDockerSwarm := dockerInfo.Swarm.LocalNodeState != "inactive"
|
||||||
|
|
||||||
labelValue := s.c.BackupStopDuringBackupLabel
|
|
||||||
if s.c.BackupStopContainerLabel != "" {
|
|
||||||
s.logger.Warn(
|
|
||||||
"Using BACKUP_STOP_CONTAINER_LABEL has been deprecated and will be removed in the next major version.",
|
|
||||||
)
|
|
||||||
s.logger.Warn(
|
|
||||||
"Please use BACKUP_STOP_DURING_BACKUP_LABEL instead. Refer to the docs for an upgrade guide.",
|
|
||||||
)
|
|
||||||
if _, ok := os.LookupEnv("BACKUP_STOP_DURING_BACKUP_LABEL"); ok {
|
|
||||||
return noop, errors.New("(*script).stopContainersAndServices: both BACKUP_STOP_DURING_BACKUP_LABEL and BACKUP_STOP_CONTAINER_LABEL have been set, cannot continue")
|
|
||||||
}
|
|
||||||
labelValue = s.c.BackupStopContainerLabel
|
|
||||||
}
|
|
||||||
|
|
||||||
filterMatchLabel := fmt.Sprintf(
|
filterMatchLabel := fmt.Sprintf(
|
||||||
"docker-volume-backup.stop-during-backup=%s",
|
"docker-volume-backup.stop-during-backup=%s",
|
||||||
labelValue,
|
s.c.BackupStopContainerLabel,
|
||||||
)
|
)
|
||||||
|
|
||||||
allContainers, err := s.cli.ContainerList(context.Background(), types.ContainerListOptions{})
|
allContainers, err := s.cli.ContainerList(context.Background(), types.ContainerListOptions{})
|
||||||
@@ -172,22 +156,14 @@ func (s *script) stopContainersAndServices() (func() error, error) {
|
|||||||
|
|
||||||
s.logger.Info(
|
s.logger.Info(
|
||||||
fmt.Sprintf(
|
fmt.Sprintf(
|
||||||
"Stopping %d out of %d running container(s) as they were labeled %s.",
|
"Stopping %d out of %d running container(s) and scaling down %d out of %d active service(s) as they were labeled %s.",
|
||||||
len(containersToStop),
|
len(containersToStop),
|
||||||
len(allContainers),
|
len(allContainers),
|
||||||
|
len(servicesToScaleDown),
|
||||||
|
len(allServices),
|
||||||
filterMatchLabel,
|
filterMatchLabel,
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
if isDockerSwarm {
|
|
||||||
s.logger.Info(
|
|
||||||
fmt.Sprintf(
|
|
||||||
"Scaling down %d out of %d active service(s) as they were labeled %s.",
|
|
||||||
len(servicesToScaleDown),
|
|
||||||
len(allServices),
|
|
||||||
filterMatchLabel,
|
|
||||||
),
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
var stoppedContainers []types.Container
|
var stoppedContainers []types.Container
|
||||||
var stopErrors []error
|
var stopErrors []error
|
||||||
@@ -220,7 +196,7 @@ func (s *script) stopContainersAndServices() (func() error, error) {
|
|||||||
}
|
}
|
||||||
// progress.ServiceProgress returns too early, so we need to manually check
|
// progress.ServiceProgress returns too early, so we need to manually check
|
||||||
// whether all containers belonging to the service have actually been removed
|
// whether all containers belonging to the service have actually been removed
|
||||||
if err := awaitContainerCountForService(s.cli, svc.serviceID, 0, s.c.BackupStopServiceTimeout); err != nil {
|
if err := awaitContainerCountForService(s.cli, svc.serviceID, 0); err != nil {
|
||||||
scaleDownErrors.append(err)
|
scaleDownErrors.append(err)
|
||||||
}
|
}
|
||||||
}(svc)
|
}(svc)
|
||||||
@@ -317,22 +293,13 @@ func (s *script) stopContainersAndServices() (func() error, error) {
|
|||||||
errors.Join(allErrors...),
|
errors.Join(allErrors...),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
s.logger.Info(
|
s.logger.Info(
|
||||||
fmt.Sprintf(
|
fmt.Sprintf(
|
||||||
"Restarted %d container(s).",
|
"Restarted %d container(s) and %d service(s).",
|
||||||
len(stoppedContainers),
|
len(stoppedContainers),
|
||||||
|
len(scaledDownServices),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
if isDockerSwarm {
|
|
||||||
s.logger.Info(
|
|
||||||
fmt.Sprintf(
|
|
||||||
"Scaled %d service(s) back up.",
|
|
||||||
len(scaledDownServices),
|
|
||||||
),
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}, initialErr
|
}, initialErr
|
||||||
}
|
}
|
||||||
@@ -15,17 +15,12 @@ func main() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
unlock, err := s.lock("/var/lock/dockervolumebackup.lock")
|
unlock, err := s.lock("/var/lock/dockervolumebackup.lock")
|
||||||
defer func() {
|
defer s.must(unlock())
|
||||||
s.must(unlock())
|
|
||||||
}()
|
|
||||||
s.must(err)
|
s.must(err)
|
||||||
|
|
||||||
defer func() {
|
defer func() {
|
||||||
if pArg := recover(); pArg != nil {
|
if pArg := recover(); pArg != nil {
|
||||||
if err, ok := pArg.(error); ok {
|
if err, ok := pArg.(error); ok {
|
||||||
s.logger.Error(
|
|
||||||
fmt.Sprintf("Executing the script encountered a panic: %v", err),
|
|
||||||
)
|
|
||||||
if hookErr := s.runHooks(err); hookErr != nil {
|
if hookErr := s.runHooks(err); hookErr != nil {
|
||||||
s.logger.Error(
|
s.logger.Error(
|
||||||
fmt.Sprintf("An error occurred calling the registered hooks: %s", hookErr),
|
fmt.Sprintf("An error occurred calling the registered hooks: %s", hookErr),
|
||||||
@@ -49,12 +44,12 @@ func main() {
|
|||||||
}()
|
}()
|
||||||
|
|
||||||
s.must(s.withLabeledCommands(lifecyclePhaseArchive, func() error {
|
s.must(s.withLabeledCommands(lifecyclePhaseArchive, func() error {
|
||||||
restartContainersAndServices, err := s.stopContainersAndServices()
|
restartContainers, err := s.stopContainersAndServices()
|
||||||
// The mechanism for restarting containers is not using hooks as it
|
// The mechanism for restarting containers is not using hooks as it
|
||||||
// should happen as soon as possible (i.e. before uploading backups or
|
// should happen as soon as possible (i.e. before uploading backups or
|
||||||
// similar).
|
// similar).
|
||||||
defer func() {
|
defer func() {
|
||||||
s.must(restartContainersAndServices())
|
s.must(restartContainers())
|
||||||
}()
|
}()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
|
|||||||
@@ -322,7 +322,7 @@ func (s *script) createArchive() error {
|
|||||||
"Using BACKUP_FROM_SNAPSHOT has been deprecated and will be removed in the next major version.",
|
"Using BACKUP_FROM_SNAPSHOT has been deprecated and will be removed in the next major version.",
|
||||||
)
|
)
|
||||||
s.logger.Warn(
|
s.logger.Warn(
|
||||||
"Please use `archive-pre` and `archive-post` commands to prepare your backup sources. Refer to the documentation for an upgrade guide.",
|
"Please use `archive-pre` and `archive-post` commands to prepare your backup sources. Refer to the README for an upgrade guide.",
|
||||||
)
|
)
|
||||||
backupSources = filepath.Join("/tmp", s.c.BackupSources)
|
backupSources = filepath.Join("/tmp", s.c.BackupSources)
|
||||||
// copy before compressing guard against a situation where backup folder's content are still growing.
|
// copy before compressing guard against a situation where backup folder's content are still growing.
|
||||||
|
|||||||
@@ -1,19 +0,0 @@
|
|||||||
---
|
|
||||||
title: Replace deprecated BACKUP_STOP_CONTAINER_LABEL setting
|
|
||||||
layout: default
|
|
||||||
parent: How Tos
|
|
||||||
nav_order: 19
|
|
||||||
---
|
|
||||||
|
|
||||||
# Replace deprecated `BACKUP_STOP_CONTAINER_LABEL` setting
|
|
||||||
|
|
||||||
Version `v2.36.0` deprecated the `BACKUP_STOP_CONTAINER_LABEL` setting and renamed it `BACKUP_STOP_DURING_BACKUP_LABEL` which is supposed to signal that this will stop both containers _and_ services.
|
|
||||||
Migrating is done by renaming the key for your custom value:
|
|
||||||
|
|
||||||
```diff
|
|
||||||
env:
|
|
||||||
- BACKUP_STOP_CONTAINER_LABEL: database
|
|
||||||
+ BACKUP_STOP_DURING_BACKUP_LABEL: database
|
|
||||||
```
|
|
||||||
|
|
||||||
The old key will stay supported until the next major version, but logs a warning each time a backup is taken.
|
|
||||||
@@ -76,7 +76,7 @@ Configuration, data about the backup run and helper functions will be passed to
|
|||||||
|
|
||||||
Here is a list of all data passed to the template:
|
Here is a list of all data passed to the template:
|
||||||
|
|
||||||
* `Config`: this object holds the configuration that has been passed to the script. The field names are the name of the recognized environment variables converted in PascalCase. (e.g. `BACKUP_STOP_DURING_BACKUP_LABEL` becomes `BackupStopDuringBackupLabel`)
|
* `Config`: this object holds the configuration that has been passed to the script. The field names are the name of the recognized environment variables converted in PascalCase. (e.g. `BACKUP_STOP_CONTAINER_LABEL` becomes `BackupStopContainerLabel`)
|
||||||
* `Error`: the error that made the backup fail. Only available in the `title_failure` and `body_failure` templates
|
* `Error`: the error that made the backup fail. Only available in the `title_failure` and `body_failure` templates
|
||||||
* `Stats`: objects that holds stats regarding script execution. In case of an unsuccessful run, some information may not be available.
|
* `Stats`: objects that holds stats regarding script execution. In case of an unsuccessful run, some information may not be available.
|
||||||
* `StartTime`: time when the script started execution
|
* `StartTime`: time when the script started execution
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ In many cases, it will be desirable to stop the services that are consuming the
|
|||||||
This image can automatically stop and restart containers and services.
|
This image can automatically stop and restart containers and services.
|
||||||
By default, any container that is labeled `docker-volume-backup.stop-during-backup=true` will be stopped before the backup is being taken and restarted once it has finished.
|
By default, any container that is labeled `docker-volume-backup.stop-during-backup=true` will be stopped before the backup is being taken and restarted once it has finished.
|
||||||
|
|
||||||
In case you need more fine grained control about which containers should be stopped (e.g. when backing up multiple volumes on different schedules), you can set the `BACKUP_STOP_DURING_BACKUP_LABEL` environment variable and then use the same value for labeling:
|
In case you need more fine grained control about which containers should be stopped (e.g. when backing up multiple volumes on different schedules), you can set the `BACKUP_STOP_CONTAINER_LABEL` environment variable and then use the same value for labeling:
|
||||||
|
|
||||||
```yml
|
```yml
|
||||||
version: '3'
|
version: '3'
|
||||||
@@ -28,7 +28,7 @@ services:
|
|||||||
backup:
|
backup:
|
||||||
image: offen/docker-volume-backup:v2
|
image: offen/docker-volume-backup:v2
|
||||||
environment:
|
environment:
|
||||||
BACKUP_STOP_DURING_BACKUP_LABEL: service1
|
BACKUP_STOP_CONTAINER_LABEL: service1
|
||||||
volumes:
|
volumes:
|
||||||
- data:/backup/my-app-backup:ro
|
- data:/backup/my-app-backup:ro
|
||||||
- /var/run/docker.sock:/var/run/docker.sock:ro
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||||
|
|||||||
@@ -352,7 +352,7 @@ services:
|
|||||||
AWS_ACCESS_KEY_ID: AKIAIOSFODNN7EXAMPLE
|
AWS_ACCESS_KEY_ID: AKIAIOSFODNN7EXAMPLE
|
||||||
AWS_SECRET_ACCESS_KEY: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
|
AWS_SECRET_ACCESS_KEY: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
|
||||||
# Label the container using the `data_1` volume as `docker-volume-backup.stop-during-backup=service1`
|
# Label the container using the `data_1` volume as `docker-volume-backup.stop-during-backup=service1`
|
||||||
BACKUP_STOP_DURING_BACKUP_LABEL: service1
|
BACKUP_STOP_CONTAINER_LABEL: service1
|
||||||
volumes:
|
volumes:
|
||||||
- data_1:/backup/data-1-backup:ro
|
- data_1:/backup/data-1-backup:ro
|
||||||
- /var/run/docker.sock:/var/run/docker.sock:ro
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||||
@@ -362,7 +362,7 @@ services:
|
|||||||
<<: *backup_environment
|
<<: *backup_environment
|
||||||
# Label the container using the `data_2` volume as `docker-volume-backup.stop-during-backup=service2`
|
# Label the container using the `data_2` volume as `docker-volume-backup.stop-during-backup=service2`
|
||||||
BACKUP_CRON_EXPRESSION: "0 3 * * *"
|
BACKUP_CRON_EXPRESSION: "0 3 * * *"
|
||||||
BACKUP_STOP_DURING_BACKUP_LABEL: service2
|
BACKUP_STOP_CONTAINER_LABEL: service2
|
||||||
volumes:
|
volumes:
|
||||||
- data_2:/backup/data-2-backup:ro
|
- data_2:/backup/data-2-backup:ro
|
||||||
- /var/run/docker.sock:/var/run/docker.sock:ro
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||||
|
|||||||
@@ -316,22 +316,15 @@ You can populate below template according to your requirements and use it as you
|
|||||||
|
|
||||||
# GPG_PASSPHRASE="<xxx>"
|
# GPG_PASSPHRASE="<xxx>"
|
||||||
|
|
||||||
########### STOPPING CONTAINERS AND SERVICES DURING BACKUP
|
########### STOPPING CONTAINERS DURING BACKUP
|
||||||
|
|
||||||
# Containers or services can be stopped by applying a
|
# Containers can be stopped by applying a
|
||||||
# `docker-volume-backup.stop-during-backup` label. By default, all containers and
|
# `docker-volume-backup.stop-during-backup` label. By default, all containers
|
||||||
# services that are labeled with `true` will be stopped. If you need more fine
|
# that are labeled with `true` will be stopped. If you need more fine grained
|
||||||
# grained control (e.g. when running multiple containers based on this image),
|
# control (e.g. when running multiple containers based on this image), you can
|
||||||
# you can override this default by specifying a different value here.
|
# override this default by specifying a different value here.
|
||||||
# BACKUP_STOP_DURING_BACKUP_LABEL="service1"
|
|
||||||
|
|
||||||
# When trying to scale down Docker Swarm services, give up after
|
# BACKUP_STOP_CONTAINER_LABEL="service1"
|
||||||
# the specified amount of time in case the service has not converged yet.
|
|
||||||
# In case you need to adjust this timeout, supply a duration
|
|
||||||
# value as per https://pkg.go.dev/time#ParseDuration to `BACKUP_STOP_SERVICE_TIMEOUT`.
|
|
||||||
# Defaults to 5 minutes.
|
|
||||||
|
|
||||||
# BACKUP_STOP_SERVICE_TIMEOUT="5m"
|
|
||||||
|
|
||||||
########### EXECUTING COMMANDS IN CONTAINERS PRE/POST BACKUP
|
########### EXECUTING COMMANDS IN CONTAINERS PRE/POST BACKUP
|
||||||
|
|
||||||
|
|||||||
2
go.mod
2
go.mod
@@ -10,7 +10,7 @@ require (
|
|||||||
github.com/docker/cli v24.0.1+incompatible
|
github.com/docker/cli v24.0.1+incompatible
|
||||||
github.com/docker/docker v24.0.7+incompatible
|
github.com/docker/docker v24.0.7+incompatible
|
||||||
github.com/gofrs/flock v0.8.1
|
github.com/gofrs/flock v0.8.1
|
||||||
github.com/klauspost/compress v1.17.5
|
github.com/klauspost/compress v1.17.4
|
||||||
github.com/leekchan/timeutil v0.0.0-20150802142658-28917288c48d
|
github.com/leekchan/timeutil v0.0.0-20150802142658-28917288c48d
|
||||||
github.com/minio/minio-go/v7 v7.0.66
|
github.com/minio/minio-go/v7 v7.0.66
|
||||||
github.com/offen/envconfig v1.5.0
|
github.com/offen/envconfig v1.5.0
|
||||||
|
|||||||
4
go.sum
4
go.sum
@@ -456,8 +456,8 @@ github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7V
|
|||||||
github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM=
|
github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM=
|
||||||
github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8=
|
github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8=
|
||||||
github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=
|
github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=
|
||||||
github.com/klauspost/compress v1.17.5 h1:d4vBd+7CHydUqpFBgUEKkSdtSugf9YFmSkvUYPquI5E=
|
github.com/klauspost/compress v1.17.4 h1:Ej5ixsIri7BrIjBkRZLTo6ghwrEtHFk7ijlczPW4fZ4=
|
||||||
github.com/klauspost/compress v1.17.5/go.mod h1:/dCuZOvVtNoHsyb+cuJD3itjs3NbnF6KH9zAO4BDxPM=
|
github.com/klauspost/compress v1.17.4/go.mod h1:/dCuZOvVtNoHsyb+cuJD3itjs3NbnF6KH9zAO4BDxPM=
|
||||||
github.com/klauspost/cpuid/v2 v2.0.1/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg=
|
github.com/klauspost/cpuid/v2 v2.0.1/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg=
|
||||||
github.com/klauspost/cpuid/v2 v2.2.6 h1:ndNyv040zDGIDh8thGkXYjnFtiN02M1PVVF+JE/48xc=
|
github.com/klauspost/cpuid/v2 v2.2.6 h1:ndNyv040zDGIDh8thGkXYjnFtiN02M1PVVF+JE/48xc=
|
||||||
github.com/klauspost/cpuid/v2 v2.2.6/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws=
|
github.com/klauspost/cpuid/v2 v2.2.6/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws=
|
||||||
|
|||||||
Reference in New Issue
Block a user