-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
39 lines (37 loc) · 1.29 KB
/
docker-compose.yml
File metadata and controls
39 lines (37 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# TuneCamp Docker Compose Configuration
# Usage: docker-compose up -d
services:
tunecamp:
build:
context: .
args:
- TUNECAMP_OWNER_ADDRESS=${TUNECAMP_OWNER_ADDRESS:-}
- TUNECAMP_RPC_URL=${TUNECAMP_RPC_URL:-https://mainnet.base.org}
- TUNECAMP_CURRENCY_CONTRACT=${TUNECAMP_CURRENCY_CONTRACT:-0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913}
image: tunecamp:latest
container_name: tunecamp
ports:
- "1970:1970"
volumes:
# Map your music library (REQUIRED - change this path)
- /path/to/your/music:/music:ro
# Persistent data (database, uploads)
- tunecamp_data:/data
environment:
# Base Mainnet RPC
- TUNECAMP_RPC_URL=https://mainnet.base.org
# Creator Wallet Address (Ethereum)
- TUNECAMP_OWNER_ADDRESS=
# Base Network Currency Contract (e.g. USDC)
- TUNECAMP_CURRENCY_CONTRACT=0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913
# Optional: Set public URL for community registration
- TUNECAMP_PUBLIC_URL=
# Optional: Site name for community
- TUNECAMP_SITE_NAME=My TuneCamp Server
# Optional: JWT secret (auto-generated if not set)
- JWT_SECRET=
restart: unless-stopped
# Optional: healthcheck configured in Dockerfile
volumes:
tunecamp_data:
driver: local