You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
659 B
29 lines
659 B
version: '3'
|
|
|
|
services:
|
|
minio:
|
|
image: minio/minio
|
|
container_name: minio
|
|
ports:
|
|
- "9000:9000"
|
|
- "9001:9001"
|
|
volumes:
|
|
- ~/storage/minio:/data
|
|
environment:
|
|
MINIO_ROOT_USER: lunchbox
|
|
MINIO_ROOT_PASSWORD: B33rb33r!
|
|
command: server --console-address ":9001" /data
|
|
|
|
nginx:
|
|
container_name: nginx_minio
|
|
restart: always
|
|
image: nginx
|
|
volumes:
|
|
- ./nginx/templates:/etc/nginx/templates:ro
|
|
- ./nginx/ssl/self.cert:/etc/nginx/ssl/self.cert:ro
|
|
- ./nginx/ssl/self-ssl.key:/etc/nginx/ssl/self-ssl.key:ro
|
|
- ./nginx.conf:/etc/nginx/conf.d/minio.conf:ro
|
|
ports:
|
|
- 8443:443
|
|
links:
|
|
- minio |