mirror of
https://github.com/penpot/penpot.git
synced 2025-05-31 14:16:11 +02:00
🎉 Add support for alternative S3 compatible services
And also add support for all AWS regions (prevoiosly onlu eu-central-1) was supported.
This commit is contained in:
parent
f1db0fea03
commit
350663b7ce
7 changed files with 67 additions and 18 deletions
|
@ -10,6 +10,7 @@ networks:
|
|||
volumes:
|
||||
postgres_data:
|
||||
user_data:
|
||||
minio_data:
|
||||
|
||||
services:
|
||||
main:
|
||||
|
@ -66,6 +67,22 @@ services:
|
|||
- PENPOT_LDAP_ATTRS_FULLNAME=cn
|
||||
- PENPOT_LDAP_ATTRS_PHOTO=jpegPhoto
|
||||
|
||||
minio:
|
||||
profiles: ["full"]
|
||||
image: "minio/minio:latest"
|
||||
command: minio server /mnt/data --console-address ":9001"
|
||||
|
||||
volumes:
|
||||
- "minio_data:/mnt/data"
|
||||
|
||||
environment:
|
||||
- MINIO_ROOT_USER=minioadmin
|
||||
- MINIO_ROOT_PASSWORD=minioadmin
|
||||
|
||||
ports:
|
||||
- 9000:9000
|
||||
- 9001:9001
|
||||
|
||||
backend:
|
||||
profiles: ["backend"]
|
||||
privileged: true
|
||||
|
@ -91,6 +108,7 @@ services:
|
|||
environment:
|
||||
- EXTERNAL_UID=${CURRENT_USER_ID}
|
||||
- PENPOT_SECRET_KEY=super-secret-devenv-key
|
||||
|
||||
# SMTP setup
|
||||
- PENPOT_SMTP_ENABLED=true
|
||||
- PENPOT_SMTP_DEFAULT_FROM=no-reply@example.com
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue