mirror of
https://gitee.com/jiulinxiri/rsync-deployments.git
synced 2025-09-10 01:55:18 +08:00
20 lines
596 B
Docker
20 lines
596 B
Docker
FROM drinternet/rsync:v1.4.3
|
|
|
|
|
|
# Label
|
|
LABEL "com.github.actions.name"="rsync deployments"
|
|
LABEL "com.github.actions.description"="Quick and simple method of deploying code to a webserver via rsync over ssh"
|
|
LABEL "com.github.actions.icon"="truck"
|
|
LABEL "com.github.actions.color"="yellow"
|
|
|
|
LABEL "repository"="http://github.com/contention/rsync-deployments"
|
|
LABEL "homepage"="https://github.com/contention/rsync-deployments"
|
|
LABEL "maintainer"="Contention <hello@contention.agency>"
|
|
|
|
|
|
# Copy entrypoint
|
|
ADD entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
|