mirror of
https://github.com/Sitoi/dailycheckin.git
synced 2024-11-17 21:58:03 +08:00
15 lines
451 B
Bash
15 lines
451 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
curl -O https://raw.githubusercontent.com/Sitoi/dailycheckin/main/docker/docker-compose.yml
|
||
|
|
||
|
curl -O https://raw.githubusercontent.com/Sitoi/dailycheckin/main/docker/Makefile
|
||
|
|
||
|
mkdir -p config
|
||
|
|
||
|
curl https://raw.githubusercontent.com/Sitoi/dailycheckin/main/deploy.sh | bash
|
||
|
|
||
|
docker run -d -v $(pwd)/config:/dailycheckin/config \
|
||
|
-v $(pwd)/logs:/dailycheckin/logs \
|
||
|
--name dailycheckin \
|
||
|
--restart always \
|
||
|
sitoi/dailycheckin:latest
|