Skip to content

Instantly share code, notes, and snippets.

@kaipyroami
Created September 11, 2020 03:18
Show Gist options
  • Save kaipyroami/9210f18ea9b9fb45edaf0abeb9f70c4e to your computer and use it in GitHub Desktop.
Save kaipyroami/9210f18ea9b9fb45edaf0abeb9f70c4e to your computer and use it in GitHub Desktop.
A simple docker compose file to run a Pharos container.
# Pharos - https://github.com/cmu-sei/pharos
version: '3.7'
services:
pharos:
container_name: pharos
image: seipharos/pharos
volumes:
- ./data:/pharos-data
restart: unless-stopped
stdin_open: true
tty: true
networks:
- pharos
networks:
pharos:
driver: bridge
# To connect to shell
# sudo docker exec –it pharos /bin/bash
# docker attach pharos
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment