Honeypi

Honeypi

A collection of docker compose definitions, which I use in my stack. I prefer a decentralized web.

First of all get docker!

# make sure curl is installed
curl -fsSL https://get.Docker.com -o get-Docker.sh
sudo sh get-Docker.sh
sudo usermod -aG docker $USER
newgrp docker

Just note down a .env file like this:

# file: `.env`
# all volumes go here
HONEYPI_DATA=/srv/honeypi
# directory for additional config files
HONEYPI_CONFIG=~/.honeypi

# your service specific variables go here
HONEYPI_POSTGRES_USER=username
HONEYPI_POSTGRES_PASSWORD=password

HONEYPI_GITEA_HOST=gitea

HONEYPI_GITEA_TRAEFIK_ENABLE=true

Then create your root docker-compose.yml:

# file: `docker-compose.yml`
services:
  postgres:
    extends:
      file: ./docker-compose.postgres.yml 
      service: gitea
  gitea:
    extends:
      file: ./docker-compose.postgres.yml 
      service: gitea
  traefik:
    extends:
      file: ./docker-compose.traefik.yml 
      service: traefik
    ports:
      - 80:80
      - 8080:8080
      - 443:443

Get your service definitions:

curl -fsSL https://sk.honeymachine.io/assets/honeypi/postgres/docker-compose.yml -o docker-compose.postgres.yml
curl -fsSL https://sk.honeymachine.io/assets/honeypi/gitea/docker-compose.yml -o docker-compose.gitea.yml
curl -fsSL https://sk.honeymachine.io/assets/honeypi/traefik/docker-compose.yml -o docker-compose.traefik.yml

Fire up your stack:

docker-compose up -d

2025