mirror of
https://github.com/firewalkwithm3/stacks.git
synced 2025-07-02 02:47:49 +08:00
21 lines
461 B
YAML
21 lines
461 B
YAML
name: netatalk
|
|
services:
|
|
netatalk:
|
|
image: netatalk/netatalk:latest
|
|
container_name: netatalk
|
|
volumes:
|
|
- netatalk_backup:/mnt/afpbackup
|
|
- /srv/netatalk:/mnt/afpshare
|
|
- /var/run/dbus:/var/run/dbus
|
|
environment:
|
|
- AFP_USER=fern
|
|
- AFP_PASS=${AFP_PASS}
|
|
- AFP_GROUP=afpusers
|
|
- ATALKD_INTERFACE=eth0
|
|
- TZ=Australia/Perth
|
|
network_mode: host
|
|
cap_add:
|
|
- NET_ADMIN
|
|
|
|
volumes:
|
|
netatalk_backup:
|