version: "3.7" services: oceand: container_name: oceand image: ghcr.io/vulpemventures/oceand:latest restart: unless-stopped environment: - OCEAN_LOG_LEVEL=5 - OCEAN_NO_TLS=true - OCEAN_NO_PROFILER=true - OCEAN_ELECTRUM_URL=ssl://blockstream.info:465 - OCEAN_NETWORK=testnet - OCEAN_UTXO_EXPIRY_DURATION_IN_SECONDS=60 - OCEAN_DB_TYPE=badger ports: - "18000:18000" volumes: - oceand:/app/data/oceand - ocean:/app/data/ocean arkd: container_name: arkd build: context: . dockerfile: Dockerfile restart: unless-stopped depends_on: - oceand environment: - ARK_WALLET_ADDR=oceand:18000 - ARK_ROUND_INTERVAL=10 - ARK_NETWORK=liquidtestnet ports: - "7070:7070" volumes: - arkd:/app/data - ark:/app/wallet-data volumes: oceand: external: false ocean: external: false arkd: external: false ark: external: false networks: default: name: ark