Skip to content

Commit 85fef80

Browse files
committed
chore: Updated docker file port to match all others (18081)
chore: Updated Readme for corrections
1 parent 036d478 commit 85fef80

File tree

2 files changed

+9
-14
lines changed

2 files changed

+9
-14
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM eclipse-temurin:17.0.7_7-jre-ubi9-minimal
33
ENV CRYPTOMATOR_VAULT_NAME='demoVault'
44
ENV CRYPTOMATOR_SRC_PATH='/path/to/cryptomator/vault/files'
55
ENV CRYPTOMATOR_VAULT_PASS='password'
6-
ENV CRYPTOMATOR_PORT='18181'
6+
ENV CRYPTOMATOR_PORT='18081'
77
ENV CRYPTOMATOR_UID='1000'
88
ENV CRYPTOMATOR_GID='1000'
99

Readme.md

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,22 @@ The Cryptomator-cli application shares a local Cryptmator vault over an (unencry
66

77
:warning: As of June 2023, Cryptomator states the cli application is still in an early stage and not ready for production use. We recommend using it only for testing and evaluation purposes.
88

9-
## Rebuild Intructions
9+
## Docker Image Rebuild Intructions
1010

1111
* Clone the repo
12+
* Copy the `dot_env_sample` file to `.env`
13+
* * `cp dot_env_sample .env`
1214
* Build with docker-compose
15+
* * `docker-compose build cryptomator-webdav`
1316

14-
```bash
15-
docker-compose build cryptomator-webdav
16-
```
1717

1818
## Usage Instructions
1919

2020
* Copy the `dot_env_sample` file to `.env`
21+
* * `cp dot_env_sample .env`
2122
* Update `.env` file with your local settings
22-
* Run `docker-compose up cryptomator-webdav`
23-
```bash
24-
docker-compose up cryptomator-webdav
25-
```
23+
* Run
24+
* * `docker-compose up cryptomator-webdav`
2625
* The vault will be accessible on the docker host machine on the port and folder specified in the .env file
2726
* By default this would be available at http://dockerhost:18081/demoVault, with no username or password on the webdav share
2827

@@ -40,10 +39,6 @@ CRYPTOMATOR_VAULT_PASS='password'
4039

4140
# CRYPTOMATOR_PORT: The port the webdav share will be shared on
4241
CRYPTOMATOR_PORT=18081
43-
44-
# CRYPTOMATOR_VAULT_CONTAINER_PATH: Doesn't need changed!
45-
# The path where the local encrypted files will be mounted by docker-compose within the container.
46-
CRYPTOMATOR_VAULT_CONTAINER_PATH=/vault
4742
```
4843

4944
## Upgrade cryptomator-cli instructions
@@ -66,4 +61,4 @@ To check what environment variables are getting set in the container:
6661
* Run `docker-compose run cryptomator-webdav-env`
6762

6863
### To run the docker container and connect to a local shell
69-
* Run `docker-compose run --service-ports cryptomator-webdav-dev`
64+
* Run `docker-compose run --service-ports cryptomator-webdav-dev`

0 commit comments

Comments
 (0)