Skip to content
Open
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
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM clojure:lein-2.6.1-alpine

MAINTAINER Christian Romney "cromney@pointslope.com"
MAINTAINER Optimis Services, Inc. "ops@optimiscorp.com"

ENV DATOMIC_VERSION 0.9.5561
ENV DATOMIC_VERSION 0.9.5661
ENV DATOMIC_HOME /opt/datomic-pro-$DATOMIC_VERSION
ENV DATOMIC_DATA $DATOMIC_HOME/data

Expand All @@ -23,7 +23,7 @@ ONBUILD ADD config $DATOMIC_HOME/config

WORKDIR $DATOMIC_HOME
RUN echo DATOMIC HOME: $DATOMIC_HOME
ENTRYPOINT ["./bin/transactor"]
ENTRYPOINT ["./bin/transactor" "-Xmx4g" "-Xms4g"]

# 3. Provide a CMD argument with the relative path to the
# transactor.properties file it will supplement the ENTRYPOINT
Expand Down
4 changes: 4 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.9.5661 / 2018-03-17
==================
Updated to Datomic version 0.9.5661

0.9.5561 / 2017-03-30
==================
Updated to Datomic version 0.9.5561
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DOCKER_IMAGE=pointslope/datomic-pro-starter
DOCKER_IMAGE=optimis/datomic-pro-starter
DOCKER_TAG?=$(shell ./datomic-version)

.PHONY: all clean info
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ No other configuration is necessary. Simply **docker build** and

## Example Dockerfile

FROM pointslope/datomic-pro-starter:0.9.5561
MAINTAINER John Doe "jdoe@example.org"
FROM optimis/datomic-pro-starter:0.9.5561
MAINTAINER Optimis Services, Inc. "ops@optimiscorp.org"
CMD ["config/dev-transactor.properties"]

## Miscellany
Expand All @@ -44,7 +44,7 @@ The Dockerfile **EXPOSES** port 4334 and establises a **VOLUME** at

The MIT License (MIT)

Copyright (c) 2014-2017 Point Slope, LLC.
Copyright (c) 2018-2020 Optimis Services, Inc.

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down