Socket
Book a DemoInstallSign in
Socket

entourage-server

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

entourage-server

Environment bootstrapping for integration tests

latest
npmnpm
Version
0.1.14
Version published
Maintainers
1
Created
Source

entourage-server

Server for environment bootstrapping

See repository page chriskalmar/entourage for more information.

Setup

Run entourage server as a privileged docker container and provide a profiles folder and a work folder as volume mounts:

Via docker

docker run -d --name entourage \
  -v /var/run/docker.sock:/var/run/docker.sock \
  -v $PWD/profiles:/app/profiles \
  -v $PWD/work:/app/work \
  -p 5858:5858 \
  chriskalmar/entourage:latest

Via docker-compose

create a file named docker-compose.yml:

version: "3"

services:
  entourage:
    image: chriskalmar/entourage:latest
    environment:
      - PGDATA=/usr/local/pgsql/data
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
      - ./profiles:/app/profiles
      - ./work:/app/work
    ports:
      - "5858:5858"

and run it with:

docker-compose up -d

Keywords

test

FAQs

Package last updated on 30 Dec 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts