You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: services/arcane/compose.yaml
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -56,15 +56,15 @@ services:
56
56
- APP_URL=https://arcane.${TAILNET_NAME}.ts.net
57
57
- PUID=1000
58
58
- PGID=1000
59
-
- ENCRYPTION_KEY=verysecretkeythatshouldbereplaced #ENCRYPTION_KEY must be 32 bytes (raw/base64/hex). Use 'openssl rand -base64 32' in your CLI to generate a secure random key.
60
-
- JWT_SECRET=verysecretkeythatshouldbereplaced #JWT_SECRET should be a secure random string. Use 'openssl rand -base64 32' in your CLI to generate another secure random key.
61
-
- LOG_LEVEL=info # Optional
62
-
- LOG_JSON=false # Optional
63
-
- OIDC_ENABLED=false # Optional
59
+
- ENCRYPTION_KEY=${ENCRYPTION_KEY}
60
+
- JWT_SECRET=${JWT_SECRET}
61
+
- LOG_LEVEL=${LOG_LEVEL}
62
+
- LOG_JSON=${LOG_JSON}
63
+
- OIDC_ENABLED=${OIDC_ENABLED}
64
64
volumes:
65
65
- /var/run/docker.sock:/var/run/docker.sock
66
66
- ./${SERVICE}-data:/app/data
67
-
- ./opt/dockerdata:/app/data/projects # Optional volume for an existing Docker Compose directory.
67
+
- ./${SERVICE}-data/opt/dockerdata:/app/data/projects # Optional volume for an existing Docker Compose directory.
0 commit comments