you're welcome sugon
All checks were successful
Docker Compose Linter / Docker Compose Linter (push) Successful in 5s

This commit is contained in:
Seaswimmer 2023-12-14 02:58:06 -05:00
parent dd08f539f6
commit d2c9d30339
Signed by: cswimr
GPG key ID: 1EBC234EEDA901AE
2 changed files with 47 additions and 46 deletions

View file

@ -0,0 +1,45 @@
# Set this to 'false' if you are not using a reverse proxy with HTTPS
- CORE_RETURN_HTTPS=true
- CORE_SECRET=changeme
- CORE_HOST=0.0.0.0
- CORE_DATABASE_URL=postgres://postgres:postgres@postgres/postgres
- CORE_PORT=3001
- CORE_LOGGER=true
# If you don't want to use s3, change the variables below:
# See: https://zipline.diced.sh/docs/config/datasource
- DATASOURCE_TYPE=s3
- DATASOURCE_S3_SECRET_ACCESS_KEY=changeme
- DATASOURCE_S3_ACCESS_KEY_ID=changeme
- DATASOURCE_S3_ENDPOINT=changeme
- DATASOURCE_S3_BUCKET=zipline
- DATASOURCE_S3_FORCE_S3_PATH=true
- DATASOURCE_S3_REGION=changeme
- DATASOURCE_S3_USE_SSL=true
# Website configuration
- WEBSITE_TITLE=TidalStream
- MFA_TOTP_ENABLED="true # Enables 2 Factor Authentication"
- EXIF_ENABLED="true # Enables Exiftool metadata, see https://zipline.diced.sh/docs/config/exif"
# Uncomment this line if you want GPS metadata to be automatically removed:
# - EXIF_REMOVE_GPS=true
- OAUTH_DISCORD_CLIENT_ID=changeme
- OAUTH_DISCORD_CLIENT_SECRET=changeme
- FEATURES_OAUTH_REGISTRATION="true # Allows users to register using an OAuth provider, see https://zipline.diced.sh/docs/config/oauth"
- FEATURES_OAUTH_LOGIN_ONLY="true # Allows users to log into their accounts using an OAuth provider, but disallows registration"
# Discord webhook configuration
- DISCORD_URL=changeme
- DISCORD_UPLOAD_USERNAME="TidalStream Uploads"
- DISCORD_SHORTEN_USERNAME="TidalStream URLs"
- DISCORD_UPLOAD_EMBED_IMAGE=true
- DISCORD_SHORTEN_EMBED_IMAGE=false
- DISCORD_UPLOAD_EMBED_TITLE="New file uploaded!"
- DISCORD_SHORTEN_EMBED_TITLE="New URL shortened!"
- DISCORD_UPLOAD_EMBED_DESCRIPTION="**User:** `{user.username}`\n**Size:** `{file.size::bytes}`"
- DISCORD_SHORTEN_EMBED_DESCRIPTION="**User:** `{user.username}`\n**Vanity:** `{url.vanity}`\n**Destination:** `{url.destination}`"
- DISCORD_UPLOAD_EMBED_FOOTER="File ID - {file.id}"
- DISCORD_SHORTEN_EMBED_FOOTER="URL ID - {url.id}"
- DISCORD_UPLOAD_EMBED_COLOR=0x0c101c
- DISCORD_SHORTEN_EMBED_COLOR=0x0c101c
- DISCORD_AVATAR_URL=https://cdn.seaswimmer.cc/tidalstream.png

View file

@ -20,52 +20,8 @@ services:
ports:
- '3001:3001'
restart: unless-stopped
environment:
# Set this to 'false' if you are not using a reverse proxy with HTTPS
- CORE_RETURN_HTTPS=true
- CORE_SECRET=changeme
- CORE_HOST=0.0.0.0
- CORE_DATABASE_URL=postgres://postgres:postgres@postgres/postgres
- CORE_PORT=3001
- CORE_LOGGER=true
# If you don't want to use s3, change the variables below:
# See: https://zipline.diced.sh/docs/config/datasource
- DATASOURCE_TYPE=s3
- DATASOURCE_S3_SECRET_ACCESS_KEY=changeme
- DATASOURCE_S3_ACCESS_KEY_ID=changeme
- DATASOURCE_S3_ENDPOINT=changeme
- DATASOURCE_S3_BUCKET=zipline
- DATASOURCE_S3_FORCE_S3_PATH=true
- DATASOURCE_S3_REGION=changeme
- DATASOURCE_S3_USE_SSL=true
# Website configuration
- WEBSITE_TITLE=TidalStream
- MFA_TOTP_ENABLED=true # Enables 2 Factor Authentication
- EXIF_ENABLED=true # Enables Exiftool metadata, see https://zipline.diced.sh/docs/config/exif
# Uncomment this line if you want GPS metadata to be automatically removed:
# - EXIF_REMOVE_GPS=true
- OAUTH_DISCORD_CLIENT_ID=changeme
- OAUTH_DISCORD_CLIENT_SECRET=changeme
- FEATURES_OAUTH_REGISTRATION=true # Allows users to register using an OAuth provider, see https://zipline.diced.sh/docs/config/oauth
- FEATURES_OAUTH_LOGIN_ONLY=true # Allows users to log into their accounts using an OAuth provider, but disallows registration
# Discord webhook configuration
- DISCORD_URL=changeme
- DISCORD_UPLOAD_USERNAME=TidalStream Uploads
- DISCORD_SHORTEN_USERNAME=TidalStream URLs
- DISCORD_UPLOAD_EMBED_IMAGE=true
- DISCORD_SHORTEN_EMBED_IMAGE=false
- DISCORD_UPLOAD_EMBED_TITLE=New file uploaded!
- DISCORD_SHORTEN_EMBED_TITLE=New URL shortened!
- DISCORD_UPLOAD_EMBED_DESCRIPTION=**User:** `{user.username}`\n**Size:** `{file.size::bytes}`
- DISCORD_SHORTEN_EMBED_DESCRIPTION=**User:** `{user.username}`\n**Vanity:** `{url.vanity}`\n**Destination:** `{url.destination}`
- DISCORD_UPLOAD_EMBED_FOOTER=File ID - {file.id}
- DISCORD_SHORTEN_EMBED_FOOTER=URL ID - {url.id}
- DISCORD_UPLOAD_EMBED_COLOR=0x0c101c
- DISCORD_SHORTEN_EMBED_COLOR=0x0c101c
- DISCORD_AVATAR_URL=https://cdn.seaswimmer.cc/tidalstream.png
env_file:
- .env
volumes:
- './uploads:/zipline/uploads'
- './public:/zipline/public'