##// END OF EJS Templates
dev: added s3 backend for development
super-admin -
Show More
@@ -337,4 +337,25 b' services:'
337 profiles:
337 profiles:
338 ["testing"]
338 ["testing"]
339
339
340 restart: always No newline at end of file
340 restart: always
341
342 s3-minio:
343 networks:
344 - rhodecode_network
345 image: minio/minio:latest
346 ports:
347 # expose on 9000 (API) 9001 (console)
348 - "9000:9000"
349 - "9001:9001"
350 environment:
351 MINIO_ROOT_USER: s3admin
352 MINIO_ROOT_PASSWORD: s3secret4
353 MINIO_API_ROOT_ACCESS: true
354 MINIO_DOMAIN: "${RC_HOSTNAME}"
355 volumes:
356 # db dumps reverse mount
357 - $PWD/.custom/s3fs:/data
358 profiles:
359 ["testing"]
360 command: server --console-address ":9001" /data
361 restart: always
General Comments 0
You need to be logged in to leave comments. Login now