tangled
alpha
login
or
join now
baileytownsend.dev
/
npmx-likes-leaderboard
3
fork
atom
this repo has no description
3
fork
atom
overview
issues
pulls
pipelines
should be working now
baileytownsend.dev
1 month ago
a239b3fe
e48569b4
+9
-1
1 changed file
expand all
collapse all
unified
split
docker-compose.yml
+9
-1
docker-compose.yml
···
5
- "3000:3000"
6
env_file:
7
- .env
0
0
8
volumes:
9
- ./data:/app/data
10
restart: unless-stopped
11
networks:
12
- default
0
0
0
0
0
13
tap:
14
image: ghcr.io/bluesky-social/indigo/tap:latest
15
platform: linux/amd64
16
depends_on:
17
-
- app
0
18
env_file:
19
- .env
20
environment:
···
5
- "3000:3000"
6
env_file:
7
- .env
8
+
environment:
9
+
HOST: 0.0.0.0
10
volumes:
11
- ./data:/app/data
12
restart: unless-stopped
13
networks:
14
- default
15
+
healthcheck:
16
+
test: ["CMD", "node", "-e", "fetch('http://localhost:3000/').then(() => process.exit(0)).catch(() => process.exit(1))"]
17
+
interval: 5s
18
+
timeout: 3s
19
+
retries: 5
20
tap:
21
image: ghcr.io/bluesky-social/indigo/tap:latest
22
platform: linux/amd64
23
depends_on:
24
+
app:
25
+
condition: service_healthy
26
env_file:
27
- .env
28
environment: