-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Docker cron image and documentation (#34)
* fix: remove unnecessary CRON_TAIL environment variable from Docker cron README * fix: add rclone to installed packages in Docker cron image * chore:update * chore:update * docs: add Docker Compose deployment instructions to Certimate README * fix: handle additional null case for new release version check in GitHub Actions workflow
- Loading branch information
Showing
4 changed files
with
26 additions
and
3 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
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 |
---|---|---|
|
@@ -27,4 +27,28 @@ docker pull registry.cn-beijing.aliyuncs.com/funnyzak/certimate:latest | |
docker run -d --name certimate_server -p 8090:8090 -v $(pwd)/data:/app/pb_data --restart unless-stopped funnyzak/certimate:latest | ||
``` | ||
|
||
### Docker Compose Deployment | ||
|
||
```yaml | ||
version: '3.7' | ||
services: | ||
certimate: | ||
image: funnyzak/certimate:latest | ||
container_name: certimate_server | ||
ports: | ||
- "8090:8090" | ||
volumes: | ||
- ./data:/app/pb_data | ||
restart: unless-stopped | ||
``` | ||
After completing the installation steps above, you can access the Certimate admin panel at: | ||
http://127.0.0.1:8090 | ||
Default credentials: | ||
- Username: [email protected] | ||
- Password: 1234567890 | ||
More information can be found at [certimate](https://github.com/usual2970/certimate). |
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