mirror of
https://github.com/penpot/penpot.git
synced 2025-12-11 22:14:05 +01:00
🐳 Remove minio service from docker-compose.yml (#7809)
This commit is contained in:
@@ -53,6 +53,8 @@ environment variable is also required on exporter. So if you are using
|
|||||||
penpot on-premise you will need to apply the same changes on your own
|
penpot on-premise you will need to apply the same changes on your own
|
||||||
`docker-compose.yaml` file.
|
`docker-compose.yaml` file.
|
||||||
|
|
||||||
|
We have removed the Minio server from the `docker/images/docker-compose.yml`
|
||||||
|
example. It's still usable as before, we just removed the example.
|
||||||
|
|
||||||
### :rocket: Epics and highlights
|
### :rocket: Epics and highlights
|
||||||
|
|
||||||
|
|||||||
@@ -54,7 +54,6 @@ volumes:
|
|||||||
penpot_postgres_v15:
|
penpot_postgres_v15:
|
||||||
penpot_assets:
|
penpot_assets:
|
||||||
# penpot_traefik:
|
# penpot_traefik:
|
||||||
# penpot_minio:
|
|
||||||
|
|
||||||
services:
|
services:
|
||||||
## Traefik service declaration example. Consider using it if you are going to expose
|
## Traefik service declaration example. Consider using it if you are going to expose
|
||||||
@@ -155,13 +154,12 @@ services:
|
|||||||
PENPOT_ASSETS_STORAGE_BACKEND: assets-fs
|
PENPOT_ASSETS_STORAGE_BACKEND: assets-fs
|
||||||
PENPOT_STORAGE_ASSETS_FS_DIRECTORY: /opt/data/assets
|
PENPOT_STORAGE_ASSETS_FS_DIRECTORY: /opt/data/assets
|
||||||
|
|
||||||
## Also can be configured to to use a S3 compatible storage
|
## Also can be configured to to use a S3 compatible storage.
|
||||||
## service like MiniIO. Look below for minio service setup.
|
|
||||||
|
|
||||||
# AWS_ACCESS_KEY_ID: <KEY_ID>
|
# AWS_ACCESS_KEY_ID: <KEY_ID>
|
||||||
# AWS_SECRET_ACCESS_KEY: <ACCESS_KEY>
|
# AWS_SECRET_ACCESS_KEY: <ACCESS_KEY>
|
||||||
# PENPOT_ASSETS_STORAGE_BACKEND: assets-s3
|
# PENPOT_ASSETS_STORAGE_BACKEND: assets-s3
|
||||||
# PENPOT_STORAGE_ASSETS_S3_ENDPOINT: http://penpot-minio:9000
|
# PENPOT_STORAGE_ASSETS_S3_ENDPOINT: <ENDPOINT>
|
||||||
# PENPOT_STORAGE_ASSETS_S3_BUCKET: <BUKET_NAME>
|
# PENPOT_STORAGE_ASSETS_S3_BUCKET: <BUKET_NAME>
|
||||||
|
|
||||||
## Telemetry. When enabled, a periodical process will send anonymous data about this
|
## Telemetry. When enabled, a periodical process will send anonymous data about this
|
||||||
@@ -262,22 +260,3 @@ services:
|
|||||||
- "1080:1080"
|
- "1080:1080"
|
||||||
networks:
|
networks:
|
||||||
- penpot
|
- penpot
|
||||||
|
|
||||||
## Example configuration of MiniIO (S3 compatible object storage service); If you don't
|
|
||||||
## have preference, then just use filesystem, this is here just for the completeness.
|
|
||||||
|
|
||||||
# minio:
|
|
||||||
# image: "minio/minio:latest"
|
|
||||||
# command: minio server /mnt/data --console-address ":9001"
|
|
||||||
# restart: always
|
|
||||||
#
|
|
||||||
# volumes:
|
|
||||||
# - "penpot_minio:/mnt/data"
|
|
||||||
#
|
|
||||||
# environment:
|
|
||||||
# - MINIO_ROOT_USER=minioadmin
|
|
||||||
# - MINIO_ROOT_PASSWORD=minioadmin
|
|
||||||
#
|
|
||||||
# ports:
|
|
||||||
# - 9000:9000
|
|
||||||
# - 9001:9001
|
|
||||||
|
|||||||
Reference in New Issue
Block a user