Issue with ZIP Password in self hosted Generator #188
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I guess I am just too stupid to understand, so bear with me please :-)
I tried building a new version and found that there is a change now in respect of ZIP_PASSWORD. My understanding currently is that ZIP_PASSWORD is the same value as SECRET_KEY.
When doing it like that I am getting above error.
Please be so kind and advise.
Stack from portioner below.
Thanks,
Ben
services: rdgen: # use bryangerlach/rdgen:latest for the latest build image: bryangerlach/rdgen:latest restart: unless-stopped environment: SECRET_KEY: "<long_string>" GHUSER: "gimport" GHBEARER: "github_pat_xxxxxxxx" ZIP_PASSWORD: "<long_string>" (same as in SECRET_KEY) GENURL: "<URL>" PROTOCOL: "https" REPONAME: "rdgen" ports: - "8001:8000" dns: - 8.8.8.8services:
rdgen:
# use bryangerlach/rdgen:latest for the latest build
#build: .
image: bryangerlach/rdgen:latest
restart: unless-stopped
environment:
SECRET_KEY: "django-insecure-!(t-!f#6g#sr%yfded9(xha)g+=!6craeez^cp+*&bz_7vdk61"
GHUSER: "github_username"
GHBEARER: "github_access_token"
GENURL: "accessible_url_of_server"
ZIP_PASSWORD: ""
GHBRANCH: "master"
PROTOCOL: "https"
REPONAME: "rdgen"
ports:
- "8000:8000"
dns:
- 8.8.8.8
Properly reading the README.MD combined with the pasted compose helped me out. I was overlooking the part to add the repository secret...