Differences From Artifact [d04b0fbe4f]:
- File Dockerfile — part of check-in [a6e2ceb454] at 2015-03-18 14:17:44 on branch trunk — Add the --create option to "fossil server", which causes a new repository to be created for the server if one does not already exist. The intended use case is Docker. (user: drh size: 1328) [more...]
To Artifact [f57bc9b001]:
- File Dockerfile — part of check-in [5811ecd7cc] at 2015-03-20 14:50:16 on branch trunk — Explicitely specify "admin" as username, otherwise Docker cannot find out which user should be created (user: jan.nijtmans size: 1347) [more...]
| ︙ | ︙ | |||
20 21 22 23 24 25 26 | USER fossil ENV HOME /opt/fossil EXPOSE 8080 | | | 20 21 22 23 24 25 26 27 | USER fossil ENV HOME /opt/fossil EXPOSE 8080 CMD ["/usr/bin/fossil", "server", "--create", "--user", "admin", "/opt/fossil/repository.fossil"] |