re-add comments to docker compose
All checks were successful
/ docker (push) Successful in 1m45s

This commit is contained in:
Lee 2023-07-05 16:30:28 +00:00
parent 53d80a492d
commit 0c7ba87f43

View File

@ -11,15 +11,15 @@ services:
# context: . # context: .
restart: always restart: always
environment: environment:
- TZ=America/Los_Angeles - TZ=America/Los_Angeles # Your timezone
- MAX_UPLOAD_SIZE=500M - MAX_UPLOAD_SIZE=500M # The max upload size of files in megabytes. Eg: 500M
- UPLOAD_SECRETS=set me - UPLOAD_SECRETS=set me # You can add multiple secrets. Format: secret1,secret2,secret3
- UPLOAD_DIR=./ - UPLOAD_DIR=./ # The directory to store the uploaded files
- USE_RANDOM_FILE_NAMES=true - USE_RANDOM_FILE_NAMES=true # If true, the uploaded files will be renamed to a random string
- SHOULD_CONVERT_TO_WEBP=true - FILE_NAME_LENGTH=8 # The length of the random file name
- WEBP_QUALITY=95 - SHOULD_CONVERT_TO_WEBP=true # If true, the uploaded files will be converted to webp
- WEBP_THREADHOLD=1048576 - WEBP_QUALITY=95 # The quality of the converted webp files (0-100 -)
- FILE_NAME_LENGTH=8 - WEBP_THREADHOLD=1048576 # The minimum file size to convert to webp (1MB in bytes)
ports: ports:
- "80:80/tcp" - "80:80/tcp"
volumes: volumes:
@ -28,4 +28,4 @@ services:
- bridge - bridge
networks: networks:
bridge: bridge: