This repository is part of final work for Data Science master's degree at UOC (Universitat Oberta de Calatunya).
The aim of this project is to explore and analyze the sale of access IoT devices in underground forums.
- Git.
- Docker and Docker-compose.
- Source SQL data files (not provided in this repository).
Clone repository
git clone [email protected]:serfer2/tfm.git
cd tfm
Create .env
vars file for PostgresDB:
cp docker/postgres_crimebb/local.env docker/postgres_crimebb/.env
Remember to set variable values with desired user and password. Do not change POSTGRES_DB
value!
Build and run containers:
docker-compose up -d
Hydrate DB with SQL dump files:
docker-compose exec crimebb sh "/usr/local/bin/restore.sh"
Now, Postgres project database is up and accesible in localhost
port 5432
.
DB connection credentials are the same you've set in docker/postgres_crimebb/.env
file.
NOTE
You'll need to place .sql
dump files in folder called ../crimeBB
(one level higher than current dir)
Postgres DB data is stored one level higher than project folder, in ../postgres-data
directory.
There's no need to run DB hydratation more than once.
In the case you get some permission errors when trying to run project containers, all you have to do is to get permissions for Postgres DB data directory before running containers:
sudo chown -R $USER ../postgres-data && docker-compose up -d
Sergio Fernández García [email protected]