This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://users.openmicroscopy.org.uk/~atarkowska/viewer.html | |
idr-demo.openmicroscopy.org/webgateway/render_thumbnail/122770/96/ | |
http://idr-demo.openmicroscopy.org/webclient/?show=image-122770 | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FILE:docker-compose.yml | |
test: | |
image: openmicroscopy/omero-ssh-daemon-c7:0.1.1 | |
ports: | |
- "2222:22" | |
test2: | |
image: openmicroscopy/omero-ssh-daemon-c7:0.1.1 | |
ports: | |
- "2223:22" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FILE: docker-compose2.yml | |
version: '2' | |
services: | |
test: | |
image: openmicroscopy/omero-ssh-daemon-c7:0.1.1 | |
ports: | |
- "2222:22" | |
test2: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using: | |
FROM maven:3.3.3-jdk-8 | |
WORKDIR /usr/src/app/bf.git | |
ONBUILD RUN mvn install -DskipTests | |
CMD ["mvn", "install", "-DskipTests"] | |
maven_1 | [INFO] Scanning for projects... | |
maven_1 | Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-webdav-jackrabbit/1.0/wagon-webdav-jackrabbit-1.0.pom | |
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-webdav-jackrabbit/1.0/wagon-webdav-jackrabbit-1.0.pom (4 KB at 17.6 KB/sec) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import omero, os, traceback | |
import omero.gateway | |
import time, datetime | |
from omero.rtypes import * | |
from omero.rtypes import unwrap | |
host = "localhost" | |
port = 4064 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>load demo</title> | |
<style> | |
body { | |
font-size: 12px; | |
font-family: Arial; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# | |
# Copyright (c) 2016 University of Dundee. | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU Affero General Public License as | |
# published by the Free Software Foundation, either version 3 of the | |
# License, or (at your option) any later version. | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import omero, os | |
import omero.gateway | |
from omero.rtypes import * | |
from omero.rtypes import unwrap | |
host = "localhost" | |
port = 4064 | |
pass = "ome" | |
user = "test" |