This repository has been archived by the owner on Jan 8, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* improved docs * missing charset and version * typo * typo
- Loading branch information
1 parent
3f165a0
commit 799a534
Showing
7 changed files
with
24 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: '[Deprocated do not use] Build release' | ||
name: '[Deprecated] Build release' | ||
|
||
on: | ||
workflow_dispatch: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,7 +36,7 @@ Run the latest production build: | |
docker run --rm --name kimai-test \ | ||
-ti \ | ||
-p 8001:8001 \ | ||
-e DATABASE_URL=mysql://kimai:[email protected]:3399/kimai \ | ||
-e DATABASE_URL=mysql://kimai:[email protected]:3399/kimai?charset=utf8&serverVersion=5.7 \ | ||
--add-host=host.docker.internal:host-gateway \ | ||
kimai/kimai2:apache | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,7 +42,7 @@ services: | |
environment: | ||
- [email protected] | ||
- ADMINPASS=changemeplease | ||
- DATABASE_URL=mysql://kimaiuser:kimaipassword@sqldb/kimai | ||
- DATABASE_URL=mysql://kimaiuser:kimaipassword@sqldb/kimai?charset=utf8&serverVersion=5.7 | ||
- TRUSTED_HOSTS=nginx,localhost,127.0.0.1 | ||
- MAILER_URL=smtp://mailer:1025 | ||
- [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,15 +25,15 @@ Run the latest production build: | |
docker run --rm --name kimai-test \ | ||
-ti \ | ||
-p 8001:8001 \ | ||
-e DATABASE_URL=mysql://kimai:kimai@${HOSTNAME}:3399/kimai \ | ||
-e DATABASE_URL=mysql://kimai:kimai@${HOSTNAME}:3399/kimai?charset=utf8&serverVersion=5.7 \ | ||
kimai/kimai2:apache | ||
``` | ||
|
||
3. Add a user using the terminal | ||
|
||
```bash | ||
docker exec -ti kimai-test \ | ||
/opt/kimai/bin/console kimai:create-user admin [email protected] ROLE_SUPER_ADMIN | ||
/opt/kimai/bin/console kimai:user:create admin [email protected] ROLE_SUPER_ADMIN | ||
``` | ||
|
||
Now, you can access the Kimai instance at <http://localhost:8001>. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters