mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-04-24 23:22:51 +08:00
15 lines
358 B
YAML
15 lines
358 B
YAML
version: "3"
|
|
services:
|
|
net-admin-minio:
|
|
image: minio/minio:latest
|
|
command: server /data --console-address ":9001"
|
|
ports:
|
|
- "9000:9000"
|
|
- "9001:9001"
|
|
restart: always
|
|
container_name: net-admin-minio
|
|
environment:
|
|
TZ: Asia/Shanghai
|
|
volumes:
|
|
- /etc/localtime:/etc/localtime
|
|
- /etc/timezone:/etc/timezone |