Files
darkproxy/docker-compose.arm.yml
auto-ci 11b766c906
Configuration validation / lint (push) Has been cancelled
Configuration validation / smoke (push) Has been cancelled
chore: snapshot before production push
2026-03-01 20:39:26 -05:00

44 lines
1.0 KiB
YAML

# ARM-specific override for darkproxy stack
# Use together with the main compose file:
#
# docker compose -f docker-compose.yml -f docker-compose.arm.yml up --build
#
# This file adds `platform: linux/arm64` hints to services so the correct
# architecture is selected when running on an ARM host. It does **not** replace
# any images; if an image is not available for ARM (e.g. alfis, unbound, the
# prebuilt tor_yggdrasil) Docker will attempt emulation via QEMU or fall back to
# amd64.
#
# You can also modify this file to swap in ARM-specific images or build
# instructions if you have them.
services:
dark3proxy:
platform: linux/arm64
i2pd_yggdrasil:
platform: linux/arm64
tor_yggdrasil:
platform: linux/arm64
alfis:
platform: linux/arm64
coredns:
platform: linux/arm64
unbound:
platform: linux/arm64
pihole:
platform: linux/arm64
emc:
platform: linux/arm64
geth:
platform: linux/arm64
# networks, volumes, and secrets are inherited from the base compose file