Skip to content

Commit 98f7091

Browse files
committed
v1.0.0
1 parent 150e406 commit 98f7091

File tree

3 files changed

+12
-13
lines changed

3 files changed

+12
-13
lines changed

.github/workflows/docker-image.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
tags: [ 'v*' ]
66

77
env:
8-
DOCKER_HUB_NAMESPACE: jloyola
8+
DOCKER_HUB_NAMESPACE: kirrebylund
99
DOCKER_HUB_REPO: pcloudcc
1010

1111
jobs:
@@ -24,11 +24,11 @@ jobs:
2424

2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828

2929
- name: Docker meta
3030
id: docker_meta
31-
uses: docker/metadata-action@v4
31+
uses: docker/metadata-action@v5
3232
with:
3333
images: |
3434
${{ env.DOCKER_HUB_NAMESPACE }}/${{ env.DOCKER_HUB_REPO }}
@@ -37,19 +37,19 @@ jobs:
3737
type=semver,pattern={{major}}.{{minor}}
3838
3939
- name: Set up QEMU
40-
uses: docker/setup-qemu-action@v2
40+
uses: docker/setup-qemu-action@v3
4141

4242
- name: Set up Docker Buildx
4343
uses: docker/setup-buildx-action@v2
4444

4545
- name: Login to Docker Hub
46-
uses: docker/login-action@v2
46+
uses: docker/login-action@v3
4747
with:
4848
username: ${{ env.DOCKER_HUB_NAMESPACE }}
4949
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
5050

5151
- name: Build and Push to Docker
52-
uses: docker/build-push-action@v3
52+
uses: docker/build-push-action@v5
5353
if: startsWith(github.ref, 'refs/tags/v')
5454
with:
5555
context: .

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ help:
44
@echo Run 'env PCLOUD_USERNAME="<pcloud_user>" PCLOUD_SECRET=<secret> make test' to run a basic functionality test
55

66
PLATFORM := linux/arm64
7-
REPOSITORY := jloyola/pcloudcc
7+
REPOSITORY := kirre-bylund/pcloudcc
88
LABEL := dev
99
IMAGE_NAME := $(REPOSITORY):$(LABEL)
1010

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# pcloudcc_docker
22
<p>
3-
<a href="https://github.com/jlloyola/pcloudcc_docker/actions"><img alt="Actions Status" src="https://github.com/jlloyola/pcloudcc_docker/actions/workflows/docker-image.yml/badge.svg"></a>
3+
<a href="https://github.com/kirre-bylund/pcloudcc_docker/actions"><img alt="Actions Status" src="https://github.com/kirre-bylund/pcloudcc_docker/actions/workflows/docker-image.yml/badge.svg"></a>
44
<a href="https://hub.docker.com/r/jloyola/pcloudcc"><img alt="Docker pulls" src="https://img.shields.io/docker/pulls/jloyola/pcloudcc"></a>
5-
<a href="https://github.com/jlloyola/pcloudcc_docker/blob/main/LICENSE"><img alt="License: GPL-3.0" src="https://img.shields.io/github/license/jlloyola/pcloudcc_docker"></a>
5+
<a href="https://github.com/kirre-bylund/pcloudcc_docker/blob/main/LICENSE"><img alt="License: GPL-3.0" src="https://img.shields.io/github/license/kirre-bylund/pcloudcc_docker"></a>
66
</p>
77

88
This repo defines a Dockerfile to build the
@@ -11,9 +11,7 @@ from source and run it inside a container.
1111

1212
The container exposes your pcloud drive in a location of your
1313
choice. It runs using non-root `uid`:`gid` to properly handle
14-
file permissions and allow seamless file transfers between the host, the container, and pcloud.
15-
This image includes PR [#163](https://github.com/pcloudcom/console-client/pull/163)
16-
to enable one-time password multi-factor authentication.
14+
file permissions and allow seamless file transfers between the host, the container, and pcloud.
1715

1816
## Setup instructions
1917
It is recommended to use a compose file to simplify setup.
@@ -59,7 +57,7 @@ folder will be given 'root' permissions, which then causes the Docker container
5957
ROOT level privileges prohibited!
6058
```
6159
### 4. Initial run
62-
Copy the [compose.yml](https://github.com/jlloyola/pcloudcc_docker/blob/main/compose.yml)
60+
Copy the [compose.yml](https://github.com/kirre-bylund/pcloudcc_docker/blob/main/compose.yml)
6361
file from this repo and place it in the same location as
6462
your `.env` file
6563
You will need to login the initial run.
@@ -97,5 +95,6 @@ Run the following command to fix it
9795
See https://stackoverflow.com/a/25986155
9896
## Acknowledgments
9997
The code in this repo was inspired by the work from:
98+
* jlloyola: https://github.com/jlloyola/pcloudcc_docker
10099
* zcalusic: https://github.com/zcalusic/dockerfiles/tree/master/pcloud
101100
* abraunegg: https://github.com/abraunegg/onedrive

0 commit comments

Comments
 (0)