mirror of
https://github.com/tiyn/dockerfiles.git
synced 2025-04-01 14:57:45 +02:00
19 lines
194 B
Docker
19 lines
194 B
Docker
FROM owncloud/client
|
|
|
|
LABEL maintainer "TiynGER <mail@martenkante.eu>"
|
|
|
|
ENV USER admin
|
|
|
|
ENV PASSWORD admin
|
|
|
|
ENV URL localhost
|
|
|
|
ADD run.sh /
|
|
|
|
RUN chmod +x run.sh
|
|
|
|
VOLUME /data
|
|
|
|
CMD ["./run.sh"]
|
|
|