Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Explicitely specify "admin" as username, otherwise Docker cannot find out which user should be created |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
5811ecd7cc0937d4b25903ab11548cb2 |
| User & Date: | jan.nijtmans 2015-03-20 14:50:16.815 |
Context
|
2015-03-21
| ||
| 16:42 | Fix the "fossil clone" command so that it preserves the project-code. All trunk versions going back to [a6e2ceb454] (2015-03-18) cause the cloned repo to have an incorrect project-code and thus rendered unable to sync. ... (check-in: 14b8475598 user: drh tags: trunk) | |
|
2015-03-20
| ||
| 14:50 | Explicitely specify "admin" as username, otherwise Docker cannot find out which user should be created ... (check-in: 5811ecd7cc user: jan.nijtmans tags: trunk) | |
| 11:12 | In "fossil server --create", don't create "admin" user with "admin" password, but print the random-generated password ... (check-in: 2ec9af63bd user: jan.nijtmans tags: trunk) | |
Changes
Changes to Dockerfile.
| ︙ | ︙ | |||
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"] |
Changes to src/main.c.
| ︙ | ︙ | |||
2048 2049 2050 2051 2052 2053 2054 |
file_simplify_name(g.zRepositoryName, -1, 0);
}else{
if( isDir==0 && fCreate ){
const char *zPassword;
db_create_repository(zRepo);
db_open_repository(zRepo);
db_begin_transaction();
| | | 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 |
file_simplify_name(g.zRepositoryName, -1, 0);
}else{
if( isDir==0 && fCreate ){
const char *zPassword;
db_create_repository(zRepo);
db_open_repository(zRepo);
db_begin_transaction();
db_initial_setup(0, "now", g.zLogin);
db_end_transaction(0);
fossil_print("project-id: %s\n", db_get("project-code", 0));
fossil_print("server-id: %s\n", db_get("server-code", 0));
zPassword = db_text(0, "SELECT pw FROM user WHERE login=%Q", g.zLogin);
fossil_print("admin-user: %s (initial password is \"%s\")\n",
g.zLogin, zPassword);
cache_initialize();
|
| ︙ | ︙ |