We need to be able to write in /tmp inside the docker
This commit is contained in:
parent
2c535dba83
commit
68f5d95915
2 changed files with 2 additions and 1 deletions
|
@ -21,7 +21,7 @@ COPY logger.xml /
|
||||||
|
|
||||||
ENV TRANTOR_ASSETS=/assets
|
ENV TRANTOR_ASSETS=/assets
|
||||||
ENV TRANTOR_STORE=/store
|
ENV TRANTOR_STORE=/store
|
||||||
VOLUME /store
|
VOLUME /store /tmp
|
||||||
WORKDIR /
|
WORKDIR /
|
||||||
|
|
||||||
ENTRYPOINT ["/trantor"]
|
ENTRYPOINT ["/trantor"]
|
||||||
|
|
|
@ -8,6 +8,7 @@ trantor:
|
||||||
- "0.0.0.0:9123:9123" # prometheus
|
- "0.0.0.0:9123:9123" # prometheus
|
||||||
volumes:
|
volumes:
|
||||||
- /opt/store:/store
|
- /opt/store:/store
|
||||||
|
- /opt/tmp:/tmp
|
||||||
# - /opt/logger.xml:/logger.xml
|
# - /opt/logger.xml:/logger.xml
|
||||||
environment:
|
environment:
|
||||||
- SESSION_KEY=
|
- SESSION_KEY=
|
||||||
|
|
Reference in a new issue