123456789101112131415161718192021 |
- images:
- image:
- repository: ccr.ccs.tencentyun.com/seembox/ghcr.io_justarchinet_archisteamfarm
- tag: 6.2.2.0
- consts:
- archisteamfarm_container_name: archisteamfarm
- perms_container_name: permissions
- config:
- Kestrel:
- Endpoints: { "HTTP": { "Url": "http://*:%d" } }
- KnownNetworks: ["10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16"]
- entrypoint: |
- #!/bin/sh
- set -e
- [ -f /app/config/IPC.config ] && { echo "Removing old IPC config..."; rm /app/config/IPC.config; }
- echo "Copying updated IPC config..."
- cp /config/IPC.config /app/config/IPC.config || { echo "Failed to copy IPC config"; exit 1; }
- echo "Starting ArchiSteamFarm..."
- exec ArchiSteamFarm --no-restart --system-required
|