Skip to content
Permalink
Browse files

Docker support for Raintale

  • Loading branch information...
shawnmjones committed May 2, 2019
1 parent f43aa2c commit 99372e1fcbcc34614e5b36a37235b49554a73614
Showing with 33 additions and 0 deletions.
  1. +16 −0 Dockerfile
  2. +17 −0 docker-compose.yml
@@ -0,0 +1,16 @@
FROM python:3.7.3-stretch

WORKDIR /app

COPY . /app

RUN pip install .

RUN mkdir /raintale-work

WORKDIR /raintale-work

# keep the container running so we can execute raintale commands
# CMD ["tail", "-f", "/dev/null"]
# CMD ["/bin/bash", "-l"]
ENTRYPOINT /bin/bash
@@ -0,0 +1,17 @@
version: '3.3'

services:
mementoembed:
image: oduwsdl/mementoembed:latest
restart: always
ports:
- "80:5550"

raintale:
depends_on:
- mementoembed
image: raintale:latest
restart: always
volumes:
- .:/raintale-work
stdin_open: true

0 comments on commit 99372e1

Please sign in to comment.
You can’t perform that action at this time.