Skip to content

Commit 88bc4e3

Browse files
committed
chore: add compose template
1 parent 221e9f3 commit 88bc4e3

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

compose-template.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
version: '3'
2+
services:
3+
be:
4+
image: algoux/rankland-web:latest
5+
network_mode: host
6+
restart: unless-stopped
7+
container_name: rankland-web
8+
environment:
9+
- SERVER_HOST=127.0.0.1
10+
- SERVER_PORT=3000
11+
- NODE_WORKERS=1
12+
- MONGO_HOST=127.0.0.1
13+
- MONGO_PORT=27017
14+
- MONGO_DB=rankland
15+
- MONGO_USER=
16+
- MONGO_PASS=
17+
- AUTH_TOKEN=your-auth-token
18+
volumes:
19+
- /your-logs-path/rankland-web:/root/.pm2/logs

0 commit comments

Comments
 (0)