UNPKG

scimgateway

Version:

Using SCIM protocol as a gateway for user provisioning to other endpoints

35 lines (33 loc) 739 B
version: '2' services: scimgateway: build: context: . dockerfile: ./Dockerfile image: scimgateway:latest container_name: scimgateway hostname: scimgateway volumes: - /home/scimgateway/config:/home/scimgateway/config:rw - /var/lib/dbus:/var/lib/dbus:ro volumes_from: - scimgateway-data ports: - "8880:8880" # environment: # - NODE_ENV=production # - PORT=8880 # - SEED=changeit restart: on-failure:3 init: true ulimits: memlock: soft: -1 hard: -1 scimgateway-data: image: scimgateway-data:latest container_name: scimgateway-data build: context: . dockerfile: ./DataDockerfile