Initial commit.

This commit is contained in:
Cameron Redmore 2025-02-15 12:07:29 +00:00
commit 55dacc0481
11 changed files with 1061 additions and 0 deletions

View file

@ -0,0 +1,16 @@
services:
camdn:
image: camdn
build:
context: .
dockerfile: Dockerfile
container_name: camdn
ports:
- "172.18.0.1:3000:3000"
environment:
API_KEY: ${API_KEY} # Set this in an .env file or your environment
HOST: ${HOST} # Set this in an .env file or your environment
UPLOAD_DIR: /app/uploads # Container path for file uploads
volumes:
- ./uploads:/app/uploads # Binds the local "uploads" directory to UPLOAD_DIR
restart: unless-stopped