Files
haven/docker-compose.yml
fsociety 11401b7a75 feat: Add Docker support and update README
This commit introduces Docker support to the project. It includes Dockerfile, docker-compose.yml, and docker-compose.tor.yml for running the application in a Docker container and setting up a Tor hidden service. It also updates the README to include instructions for using Docker.

Additionally, it makes adjustments to .env.example and .gitignore files for better Docker compatibility.
2024-09-23 20:12:39 +02:00

15 lines
283 B
YAML

services:
relay:
container_name: haven-relay
build:
context: .
dockerfile: Dockerfile
env_file:
- .env
volumes:
- "./db:/app/db"
- "./haven:/app/haven"
ports:
- "3335:3335"
user: "${DOCKER_UID:-1000}:${DOCKER_GID:-1000}"