Skip to content

Commit 681422a

Browse files
committed
iiif-presentation-api-server container
1 parent e5e8dc2 commit 681422a

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

docker-compose.iiif.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
services:
2+
# https://github.com/UCLALibrary/docker-cantaloupe
3+
cantaloupe:
4+
image: uclalibrary/cantaloupe:5.0.6-6
5+
ports:
6+
- "8182:8182"
7+
environment:
8+
CANTALOUPE_SOURCE_STATIC: "S3Source"
9+
CANTALOUPE_ENDPOINT_ADMIN_SECRET: "secret"
10+
CANTALOUPE_ENDPOINT_ADMIN_ENABLED: "false"
11+
CANTALOUPE_S3SOURCE_LOOKUP_STRATEGY: "BasicLookupStrategy"
12+
CANTALOUPE_S3SOURCE_BASICLOOKUPSTRATEGY_BUCKET_NAME: "cantaloupe"
13+
CANTALOUPE_S3SOURCE_SECRET_KEY: "minioadmin"
14+
CANTALOUPE_S3SOURCE_ACCESS_KEY_ID: "minioadmin"
15+
CANTALOUPE_S3SOURCE_ENDPOINT: "http://minio-nginx:9000"
16+
networks:
17+
- clowder2
18+
iiif-presentation-api-server:
19+
image: iiif-presentation-api-server
20+
ports:
21+
- "8002:8000"
22+
environment:
23+
IIIF_IMAGE_API_SERVER_URL: "http://192.168.4.100:8182/iiif/3"
24+
networks:
25+
- clowder2
26+
networks:
27+
clowder2:
28+
name: clowder2

docker-compose.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,10 @@ services:
168168
minio-nginx:
169169
image: nginx:1.19.2-alpine
170170
restart: unless-stopped
171-
hostname: nginx
171+
hostname: minio-nginx
172+
ports:
173+
- "9000:9000"
174+
- "9001:9001"
172175
networks:
173176
- clowder2
174177
volumes:

0 commit comments

Comments
 (0)