Skip to content
Snippets Groups Projects
Commit 0e41dc3b authored by Daniel Lyons's avatar Daniel Lyons
Browse files

Make Docker use the local files instead

parent 954088ec
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,8 @@ services:
image: nrao:schema
depends_on:
- db
volumes:
- .:/code
workflow:
image: nrao:workflow
......@@ -25,6 +27,8 @@ services:
- "3456:3456"
depends_on:
- schema
volumes:
- .:/code
capability:
image: nrao:capability
......@@ -32,3 +36,5 @@ services:
- "3457:3457"
depends_on:
- schema
volumes:
- .:/code
......@@ -6,4 +6,4 @@ EXPOSE 3457
ENV CAPO_PROFILE docker
ENV PATH /opt/conda/envs/data/bin:$PATH
ENV CONDA_DEFAULT_ENV data
ENTRYPOINT pserve development.ini
ENTRYPOINT pserve --reload development.ini
......@@ -6,4 +6,4 @@ EXPOSE 3456
ENV CAPO_PROFILE docker
ENV PATH /opt/conda/envs/data/bin:$PATH
ENV CONDA_DEFAULT_ENV data
ENTRYPOINT pserve development.ini
ENTRYPOINT pserve --reload development.ini
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment