Project

General

Profile

Download (441 Bytes) Statistics
| Branch: | Tag: | Revision:
1
version: '3'
2
services: 
3
    cdmserver:
4
        ports:
5
        - "8080:8080" 
6
        env_file:
7
        - ./cdm-server.env
8
        volumes:
9
        # recommended settings for development
10
        - type: bind
11
          source: ~/ # user-home as a cdm-server-home => use the .cdmLibrary in user home
12
          target: /data
13
        - type: bind
14
          source: ./ # log directly into the working directory
15
          target: /log/cdmserver
16
  
(6-6/7)