mirror of
https://github.com/firewalkwithm3/stacks.git
synced 2025-07-02 02:47:49 +08:00
first commit
This commit is contained in:
commit
149e02a10d
72 changed files with 3442 additions and 0 deletions
3
netatalk/README.md
Normal file
3
netatalk/README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# Compose file for Netatalk
|
||||
## Environment Variables
|
||||
- AFP_PASS - file share password
|
20
netatalk/compose.yaml
Normal file
20
netatalk/compose.yaml
Normal file
|
@ -0,0 +1,20 @@
|
|||
services:
|
||||
netatalk:
|
||||
image: netatalk/netatalk:latest
|
||||
container_name: netatalk
|
||||
network_mode: host
|
||||
cap_add:
|
||||
- NET_ADMIN
|
||||
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
|
||||
|
||||
volumes:
|
||||
netatalk_backup:
|
Loading…
Add table
Add a link
Reference in a new issue