- Add IPFS container to docker-compose - Add ipfshttpclient dependency - Add ipfs_client.py module for IPFS operations - Add ipfs_cid field to Asset model and database schema - Pin content on L2 IPFS when assets are published/registered L2 now stores content on its own IPFS node, enabling federation - content remains available even if L1 goes down. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
62 lines
1.3 KiB
YAML
62 lines
1.3 KiB
YAML
version: "3.8"
|
|
|
|
services:
|
|
postgres:
|
|
image: postgres:16-alpine
|
|
environment:
|
|
POSTGRES_USER: artdag
|
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-artdag}
|
|
POSTGRES_DB: artdag
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data
|
|
networks:
|
|
- internal
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U artdag"]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 5
|
|
|
|
ipfs:
|
|
image: ipfs/kubo:latest
|
|
volumes:
|
|
- ipfs_data:/data/ipfs
|
|
networks:
|
|
- internal
|
|
deploy:
|
|
replicas: 1
|
|
restart_policy:
|
|
condition: on-failure
|
|
|
|
l2-server:
|
|
image: git.rose-ash.com/art-dag/l2-server:latest
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- ARTDAG_DATA=/data/l2
|
|
- DATABASE_URL=postgresql://artdag:${POSTGRES_PASSWORD:-artdag}@postgres:5432/artdag
|
|
- IPFS_API=/dns/ipfs/tcp/5001
|
|
# ARTDAG_DOMAIN, ARTDAG_USER, JWT_SECRET from .env file
|
|
volumes:
|
|
- l2_data:/data/l2 # Still needed for RSA keys
|
|
networks:
|
|
- internal
|
|
- externalnet
|
|
depends_on:
|
|
- postgres
|
|
- ipfs
|
|
deploy:
|
|
replicas: 1
|
|
restart_policy:
|
|
condition: on-failure
|
|
|
|
volumes:
|
|
l2_data:
|
|
postgres_data:
|
|
ipfs_data:
|
|
|
|
networks:
|
|
internal:
|
|
externalnet:
|
|
external: true
|