forked from fli-iam/shanoir-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-dev-front.yml
37 lines (33 loc) · 1013 Bytes
/
docker-compose-dev-front.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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: