Skip to content

docker‐compose for iBlocker Containers

wifiBlocker EUROPE edited this page Nov 25, 2024 · 11 revisions
  1. Install Docker as described below

https://wiki.alpinelinux.org/wiki/Docker

  1. Create docker-compose.yml and launch it as docker-compose up -d. The below containers would be installed:

iblocker/kbac - KeePass Access Based Control

Upload your KeePass .kdbx database to kBac Docker container, and access your Passwords/PIN(s)/Secrets from smartphone, PC, tablet by accessing http://172.25.1.1:8087⁠ and login with iblocker/Test#1234

----------------//---------------

iblocker/messenger - Text message encryption (128-bit symmetric block cipher)

Open in browser http://172.25.1.1:8086⁠ and login with iblocker/Test#1234

----------------//---------------

iblocker/encryptor - Files encryptor (128-bit symmetric block cipher)

File is encrypted and a download link is generated. Encrypted file or the link could be send via email or messenger, and the receiver could decrypt the file.

Open in browser http://172.25.1.1:8084⁠ and login with iblocker/Test#1234

----------------//---------------

iblocker/convertor - CSV CONVERTOR

User could upload a .csv file which would be converted into an Excel file and MySQL database.

Open in browser http://172.25.1.1:8083⁠ and login with iblocker/Test#1234

----------------//---------------

docker-compose.yml file

version: '3.4'
services:

  kbac:
    image: iblocker/kbac:v2.0.0
    environment:
    - "ENDPOINT=http://localhost:8087"
    ports:
    - "8087:80"
    container_name: conkbac
    restart: always

  messenger:
    image: iblocker/messenger:v2.0.0
    environment:
    - "ENDPOINT=http://localhost:8086"
    ports:
    - "8086:80"
    container_name: messenger
    restart: always

  encryptor:
    image: iblocker/encryptor:v2.0.0
    environment:
    - "ENDPOINT=http://localhost:8085"
    ports:
    - "8084:80"
    container_name: conencryptor
    restart: always

  convertor:
    image: iblocker/convertor:v2.0.0
    environment:
    - "ENDPOINT=http://localhost:8083"
    ports:
    - "8083:80"
    container_name: conconvertor
    restart: always

Clone this wiki locally