Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 679 Bytes

README.md

File metadata and controls

25 lines (19 loc) · 679 Bytes

This is a docker implementation of Globaleaks.

It is available on DockerHub.

Here is a minimal docker-compose.yml needed to run this image:

version: "3"
services:
  globaleaks:
    image: ckeeney/globaleaks
    build: .
    cap_add:
      - NET_ADMIN
    ports:
      - 80:80
      - 443:443
    volumes:
      - ./data/var/:/var/globaleaks

Here is a oneliner for docker: Actually, I use docker-compose and am not going to bother looking this up. Submit a pull request.

This container does not stop gracefully, probably because of the docker-entrypoint.sh stuff going on.