20 lines
621 B
YAML
20 lines
621 B
YAML
|
---
|
||
|
version: "3.8"
|
||
|
services:
|
||
|
pacoloco:
|
||
|
# build: https://github.com/anatol/pacoloco.git
|
||
|
image: ghcr.io/anatol/pacoloco
|
||
|
restart: unless-stopped
|
||
|
ports:
|
||
|
- "9129:9129"
|
||
|
volumes:
|
||
|
- ./cache:/var/cache/pacoloco
|
||
|
- ./pacoloco.yaml:/etc/pacoloco.yaml
|
||
|
- ./mirrorlist:/etc/pacman.d/mirrorlist-reflector-artix
|
||
|
- ./mirrorlist-arch:/etc/pacman.d/mirrorlist-reflector-arch
|
||
|
- ./mirrorlist-universe:/etc/pacman.d/mirrorlist-reflector-universe
|
||
|
# To set time zone within the container for cron and log timestamps:
|
||
|
environment:
|
||
|
TZ: America/Denver
|
||
|
network_mode: "host"
|