Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ REPLACE := perl -i -pe
RODAN_PATH := ./rodan-main/code/rodan
JOBS_PATH := $(RODAN_PATH)/jobs

PROD_TAG := v3.3.0
PROD_TAG := v3.3.1

DOCKER_TAG := nightly

Expand Down
12 changes: 6 additions & 6 deletions production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: "3.4"
services:

nginx:
image: "ddmal/nginx:v3.3.0"
image: "ddmal/nginx:v3.3.1"
deploy:
replicas: 1
resources:
Expand Down Expand Up @@ -37,7 +37,7 @@ services:
- "resources:/rodan/data"

rodan-main:
image: "ddmal/rodan-main:v3.3.0"
image: "ddmal/rodan-main:v3.3.1"
deploy:
replicas: 1
resources:
Expand Down Expand Up @@ -78,7 +78,7 @@ services:
- "resources:/rodan/data"

celery:
image: "ddmal/rodan-main:v3.3.0"
image: "ddmal/rodan-main:v3.3.1"
deploy:
replicas: 1
resources:
Expand Down Expand Up @@ -109,7 +109,7 @@ services:
- "resources:/rodan/data"

py3-celery:
image: "ddmal/rodan-python3-celery:v3.3.0"
image: "ddmal/rodan-python3-celery:v3.3.1"
deploy:
replicas: 1
resources:
Expand Down Expand Up @@ -139,7 +139,7 @@ services:
- "resources:/rodan/data"

gpu-celery:
image: "ddmal/rodan-gpu-celery:v3.3.0"
image: "ddmal/rodan-gpu-celery:v3.3.1"
deploy:
replicas: 1
resources:
Expand Down Expand Up @@ -195,7 +195,7 @@ services:
TZ: America/Toronto

postgres:
image: "ddmal/postgres-plpython:v3.3.0"
image: "ddmal/postgres-plpython:v3.3.1"
deploy:
replicas: 1
endpoint_mode: dnsrr
Expand Down
22 changes: 18 additions & 4 deletions rodan-client/code/templates/index.html
Original file line number Diff line number Diff line change
@@ -1,18 +1,32 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="shortcut icon" href="./resources/favicon.ico" type="image/x-icon">
<link rel="shortcut icon"
href="./resources/favicon.ico"
type="image/x-icon">
<link rel="icon" href="./resources/favicon.ico" type="image/x-icon">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Rodan Client</title>
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> -->
<!-- <link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
crossorigin="anonymous"> -->
<link rel="stylesheet" href="default.css">
<!--[if gt IE 8]><!-->
<!-- Yahoo currently only hosts this page on http. This is a problem when we are using https.
<!-- Yahoo currently only hosts this page on http. This is a problem when we are using https.
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.6.0/grids-responsive-min.css"> -->
<!-- <link rel="stylesheet" href="./resources/grids-responsive-min.css"> -->
<!-- <link rel="stylesheet" href="./resources/grids-responsive-min.css"> -->
<!--<![endif]-->
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-T7MKD6GMW7"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'G-T7MKD6GMW7');
</script>
</head>
<body>
<div id="app">
Expand Down
2 changes: 1 addition & 1 deletion rodan-main/code/rodan/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Get version: import rodan; rodan.__version__
# Version numbers also appear in the API.
__title__ = "Rodan"
__version__ = "v3.3.0"
__version__ = "v3.3.1"
__copyright__ = "Copyright 2011-2022 Distributed Digital Music Archives & Libraries Lab"
# If changing this line, also change rodan-main/Dockerfile
__build_hash__ = "local"