mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-18 10:28:17 +01:00
11 lines
172 B
Docker
11 lines
172 B
Docker
ARG BUILD_FROM
|
|
FROM $BUILD_FROM
|
|
|
|
# Copy root filesystem
|
|
COPY rootfs /
|
|
|
|
# MOFIFY DATA PATH
|
|
RUN sed -i "s|config|data|g" /etc/services.d/transmission/run
|
|
|
|
VOLUME [ "/data" ]
|