|
@@ -28,13 +28,20 @@ git clone https://git.in-ulm.de/ulpeters/minio.git
|
|
|
|
|
|
# Prepare your configuration
|
|
|
cp .env.template .env
|
|
|
- # [Generate](../KEY-GENERATION.md) and add your admin keys in .env
|
|
|
- # Define your port mapping
|
|
|
+ # Set custom access and secret keys in .env
|
|
|
+
|
|
|
|
|
|
# Create a home and data directory owned by 1000:1000
|
|
|
mkdir -p $miniodir/data/home $miniodir/data/data
|
|
|
chown -R 1000:1000 $miniodir
|
|
|
+
|
|
|
+# Start minio
|
|
|
+docker-compose up -dd
|
|
|
+docker logs --follow minio
|
|
|
```
|
|
|
+**Make sure to [generate](KEY-GENERATION.md) and set custom access and secret keys!!**
|
|
|
+
|
|
|
+
|
|
|
### Advanced Configuration
|
|
|
|
|
|
#### Preconditions:
|