mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
38 lines
969 B
YAML
38 lines
969 B
YAML
#
|
|
# The contents of this file are subject to the license and copyright
|
|
# detailed in the LICENSE and NOTICE files at the root of the source
|
|
# tree and available online at
|
|
#
|
|
# http://www.dspace.org/license/
|
|
#
|
|
|
|
# Docker Compose for running the DSpace Angular UI for testing/development
|
|
# Requires also running a REST API backend (either locally or remotely),
|
|
# for example via 'docker-compose-rest.yml'
|
|
version: '3.7'
|
|
networks:
|
|
dspacenet:
|
|
services:
|
|
dspace-angular:
|
|
container_name: dspace-angular
|
|
environment:
|
|
DSPACE_HOST: dspace-angular
|
|
DSPACE_NAMESPACE: /
|
|
DSPACE_PORT: '4000'
|
|
DSPACE_SSL: "false"
|
|
image: dspace/dspace-angular:latest
|
|
build:
|
|
context: ..
|
|
dockerfile: Dockerfile
|
|
networks:
|
|
dspacenet:
|
|
ports:
|
|
- published: 4000
|
|
target: 4000
|
|
- published: 9876
|
|
target: 9876
|
|
stdin_open: true
|
|
tty: true
|
|
volumes:
|
|
- ./environment.dev.ts:/app/src/environments/environment.dev.ts
|