mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-04-29 04:25:43 +00:00

The standard Alpine package should not install docker glue, so remove it from the APKBUILD and install it in the Dockerfile instead.
13 lines
144 B
Bash
Executable File
13 lines
144 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
##
|
|
# For volume mounts...
|
|
##
|
|
chown -R frr:frr /etc/frr
|
|
/usr/lib/frr/frrinit.sh start
|
|
|
|
# Sleep forever
|
|
exec tail -f /dev/null
|