Skip to content

Commit

Permalink
Update minio (#48) (#55)
Browse files Browse the repository at this point in the history
Updated the image to closer match the documentation. (Since we are only using container, the latest minIO container already deploys a SNSD minIO server. See here in documentation https://min.io/docs/minio/container/index.html)
Update minio dependency to 7.1.17.
Update screenshot name to remove ":" (#50)
  • Loading branch information
songmeo authored Nov 7, 2023
1 parent 6a40712 commit 4bbef6d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# nunaweb
A web UI for generating code for DSDL via Nunavut.

![Nunaweb screenshot](/screenshots/2021-01-27T10\:34\:38_ushot_screenshot.png)
![Nunaweb screenshot](/screenshots/2021-01-27_ushot_screenshot.png)

Nunaweb makes it easy to generate code for DSDL namespaces from the web.
Simply upload your namespaces as .zip archives (or provide a remote link)
Expand Down
4 changes: 2 additions & 2 deletions nunaserver/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ services:
- FLASK_ENV=development
command: "bash -c 'cd /nunaserver && pip3 install -r requirements.txt && python3 -m nunaserver'"
minio:
image: minio/minio:latest
image: quay.io/minio/minio
volumes:
- ./data:/data
network_mode: host
environment:
# CHANGE THIS
MINIO_ROOT_USER: nunaweb
MINIO_ROOT_PASSWORD: supersecurepassword
command: server /data
command: server /data --console-address ":9090"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
interval: 30s
Expand Down
2 changes: 1 addition & 1 deletion nunaserver/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ nunavut==2.3.1
pydsdl==1.20.1

# MinIO
minio==7.0.3
minio==7.1.17
flask-minio==0.1.2

0 comments on commit 4bbef6d

Please sign in to comment.