forked from LOVECHEN/raycast-unblock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
28 lines (27 loc) · 960 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
version: '3.8'
services:
app:
container_name: raycast-unblock
# ## You can also add arguments to the command line here, such as the following
# ## If you need to use config.toml file, please uncomment the following line ####
command: --config=./config/config.toml
image: wibuswee/raycast-unblock:latest
environment:
- TZ=Asia/Shanghai
# ## You can also use proxy settings here, such as the following
# - HTTP_PROXY=
# - HTTPS_PROXY=
# ## If you need to use config.toml file, please uncomment the following line ####
volumes:
- ./configs/raycast-unblock:/app/config
# If you want to operate the Sync file, you can uncomment the following line
# - ./raycast_sync:/root/raycast_sync
ports:
- '3000:3000'
restart: always
healthcheck:
test: [CMD, curl, -f, 'http://127.0.0.1:3000']
interval: 1m30s
timeout: 10s
retries: 5
start_period: 30s