Skip to content

Commit

Permalink
decomment volume in dockerfile_full, added data volume on docker compose
Browse files Browse the repository at this point in the history
  • Loading branch information
EPedrotti committed Jan 2, 2019
1 parent f91cd6a commit 2d174a8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docker/Dockerfile_full
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ RUN pip install https://github.com/explosion/spacy-models/releases/download/en_c

COPY sample_configs/config_spacy_duckling.yml ${RASA_NLU_HOME}/config.yml

#VOLUME ["/app/projects", "/app/logs", "/app/data"]
VOLUME ["/app/projects", "/app/logs", "/app/data"]

EXPOSE 5000

Expand Down
1 change: 1 addition & 0 deletions docker/docker-cloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ rasanlu:
volumes:
- "/rasa-app-data/projects:/app/projects"
- "/rasa-app-data/logs:/app/logs"
- "./rasa-app-data/data:/app/data"
1 change: 1 addition & 0 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ services:
volumes:
- "./rasa-app-data/projects:/app/projects"
- "./rasa-app-data/logs:/app/logs"
- "./rasa-app-data/data:/app/data"
duckling:
image: rasa/duckling:latest
networks: ['rasa-network']
Expand Down
1 change: 1 addition & 0 deletions src/sphinx-rtd-theme
Submodule sphinx-rtd-theme added at 6b89a7

0 comments on commit 2d174a8

Please sign in to comment.