Skip to content

Commit

Permalink
refactor: rename package to daytona-provider-docker
Browse files Browse the repository at this point in the history
  • Loading branch information
Tpuljak committed May 6, 2024
1 parent 26b88e0 commit 386d9e7
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ The team at Daytona welcomes contributions from the community. There are many wa

## Provide Feedback

You might find things that can be improved while you are using the Daytona Docker Provider. You can help by [submitting an issue](https://github.com/daytonaio/daytona-docker-provider/issues/new) when:
You might find things that can be improved while you are using the Daytona Docker Provider. You can help by [submitting an issue](https://github.com/daytonaio/daytona-provider-docker/issues/new) when:

* When the Docker Provider crashes or you encounter a bug that can only be resolved by restarting Daytona.
* An error occurs that is unrecoverable, causes workspace integrity problems or loss, or generally prevents you from using a workspace.
Expand Down Expand Up @@ -39,7 +39,7 @@ Follow the following steps to ensure your contribution goes smoothly.
1. Read and follow the steps outlined in the [Daytona Contributing Policy](README.md#contributing).
2. Configure your development environment by either following the guide below.
3. [Fork](https://help.github.com/articles/working-with-forks/) the GitHub Repository allowing you to make the changes in your own copy of the repository.
4. Create a [GitHub issue](https://github.com/daytonaio/daytona-docker-provider/issues) if one doesn't exist already.
4. Create a [GitHub issue](https://github.com/daytonaio/daytona-provider-docker/issues) if one doesn't exist already.
5. [Prepare your changes](/PREPARING_YOUR_CHANGES.md) and ensure your commits are descriptive. The document contains an optional commit template, if desired.
6. Ensure that you sign off on all your commits to comply with the DCO v1.1. We have more details in [Prepare your changes](/PREPARING_YOUR_CHANGES.md).
7. Create a pull request on GitHub. If you're new to GitHub, read about [pull requests](https://help.github.com/articles/about-pull-requests/). You are welcome to submit your pull request for commentary or review before it is complete by creating a [draft pull request](https://help.github.com/en/articles/about-pull-requests#draft-pull-requests). Please include specific questions or items you'd like feedback on.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ This repository is the home of the <a href="https://github.com/daytonaio/daytona
</br>

<p align="center">
<a href="https://github.com/daytonaio/daytona-docker-provider/issues/new?assignees=&labels=bug&projects=&template=bug_report.md&title=%F0%9F%90%9B+Bug+Report%3A+">Report Bug</a>
<a href="https://github.com/daytonaio/daytona-provider-docker/issues/new?assignees=&labels=bug&projects=&template=bug_report.md&title=%F0%9F%90%9B+Bug+Report%3A+">Report Bug</a>
·
<a href="https://github.com/daytonaio/daytona-docker-provider/issues/new?assignees=&labels=enhancement&projects=&template=feature_request.md&title=%F0%9F%9A%80+Feature%3A+">Request Feature</a>
<a href="https://github.com/daytonaio/daytona-provider-docker/issues/new?assignees=&labels=enhancement&projects=&template=feature_request.md&title=%F0%9F%9A%80+Feature%3A+">Request Feature</a>
·
<a href="https://join.slack.com/t/daytonacommunity/shared_invite/zt-273yohksh-Q5YSB5V7tnQzX2RoTARr7Q">Join Our Slack</a>
·
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/daytonaio/daytona-docker-provider
module github.com/daytonaio/daytona-provider-docker

go 1.22.2

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/hashicorp/go-hclog"
hc_plugin "github.com/hashicorp/go-plugin"

p "github.com/daytonaio/daytona-docker-provider/pkg/provider"
p "github.com/daytonaio/daytona-provider-docker/pkg/provider"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions pkg/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"runtime"
"strings"

"github.com/daytonaio/daytona-docker-provider/pkg/ssh_tunnel/util"
"github.com/daytonaio/daytona-docker-provider/pkg/types"
"github.com/daytonaio/daytona-provider-docker/pkg/ssh_tunnel/util"
"github.com/daytonaio/daytona-provider-docker/pkg/types"

"github.com/docker/docker/client"

Expand Down
8 changes: 4 additions & 4 deletions pkg/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import (
"path"
"runtime"

internal "github.com/daytonaio/daytona-docker-provider/internal"
log_writers "github.com/daytonaio/daytona-docker-provider/internal/log"
"github.com/daytonaio/daytona-docker-provider/pkg/client"
provider_types "github.com/daytonaio/daytona-docker-provider/pkg/types"
internal "github.com/daytonaio/daytona-provider-docker/internal"
log_writers "github.com/daytonaio/daytona-provider-docker/internal/log"
"github.com/daytonaio/daytona-provider-docker/pkg/client"
provider_types "github.com/daytonaio/daytona-provider-docker/pkg/types"

"github.com/daytonaio/daytona/pkg/docker"
"github.com/daytonaio/daytona/pkg/logger"
Expand Down
6 changes: 3 additions & 3 deletions pkg/provider/provider_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ import (
"encoding/json"
"testing"

"github.com/daytonaio/daytona-docker-provider/pkg/client"
"github.com/daytonaio/daytona-provider-docker/pkg/client"

"github.com/daytonaio/daytona/pkg/docker"
"github.com/daytonaio/daytona/pkg/gitprovider"
"github.com/daytonaio/daytona/pkg/provider"
"github.com/daytonaio/daytona/pkg/workspace"

docker_provider "github.com/daytonaio/daytona-docker-provider/pkg/provider"
provider_types "github.com/daytonaio/daytona-docker-provider/pkg/types"
docker_provider "github.com/daytonaio/daytona-provider-docker/pkg/provider"
provider_types "github.com/daytonaio/daytona-provider-docker/pkg/types"

docker_types "github.com/docker/docker/api/types"
docker_client "github.com/docker/docker/client"
Expand Down
4 changes: 2 additions & 2 deletions pkg/ssh_tunnel/util/forward_unix.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"context"
"errors"

"github.com/daytonaio/daytona-docker-provider/pkg/ssh_tunnel"
"github.com/daytonaio/daytona-docker-provider/pkg/types"
"github.com/daytonaio/daytona-provider-docker/pkg/ssh_tunnel"
"github.com/daytonaio/daytona-provider-docker/pkg/types"

log "github.com/sirupsen/logrus"
)
Expand Down

0 comments on commit 386d9e7

Please sign in to comment.