-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2377 from jcomedouteau/shanoir-issue#2364-github-…
…packages #2364-github-packages
- Loading branch information
Showing
3 changed files
with
418 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
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: |
Oops, something went wrong.