Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#2364-github-packages #2377

Merged
Merged
Show file tree
Hide file tree
Changes from 2 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
37 changes: 37 additions & 0 deletions docker-compose-dev-front.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Shanoir NG - Import, manage and share neuroimaging data
# Copyright (C) 2009-2019 Inria - https://www.inria.fr/
# Contact us on https://project.inria.fr/shanoir/
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see https://www.gnu.org/licenses/gpl-3.0.html

version: '3'
services:

nginx:
environment:
- SHANOIR_DEV=TRUE
depends_on:
- "front-dev"

front-dev:
container_name: front-dev
build:
context: docker-compose-dev
a-ba marked this conversation as resolved.
Show resolved Hide resolved
target: front-dev
volumes:
- "./shanoir-ng-front:/app/"
command: ng serve --host 0.0.0.0 --disable-host-check
ports:
- "4200:4200"
tty: true
networks:
- shanoir_ng_network

networks:
shanoir_ng_network:
Loading
Loading