Skip to content

Commit

Permalink
Merge pull request #2377 from jcomedouteau/shanoir-issue#2364-github-…
Browse files Browse the repository at this point in the history
…packages

#2364-github-packages
  • Loading branch information
jcomedouteau authored Oct 23, 2024
2 parents d152682 + acaad01 commit 3b4e019
Show file tree
Hide file tree
Showing 3 changed files with 418 additions and 44 deletions.
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
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

0 comments on commit 3b4e019

Please sign in to comment.