-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcompose.yaml
More file actions
46 lines (40 loc) · 867 Bytes
/
compose.yaml
File metadata and controls
46 lines (40 loc) · 867 Bytes
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
services:
postgres:
image: postgres:15
restart: unless-stopped
networks:
- slbnetwork
env_file:
- ./config.env
volumes:
- ./db/pg-create:/docker-entrypoint-initdb.d/pg-create.sh
- postgresdata:/var/lib/postgresql/data
labels:
- "com.centurylinklabs.watchtower.enable=false"
spacexlaunchbot:
image: psidex/spacexlaunchbot:latest
restart: unless-stopped
networks:
- slbnetwork
env_file:
- ./config.env
volumes:
- slbdata:/docker-volume
depends_on:
- postgres
stats-server:
image: psidex/spacexlaunchbot-stats-server:latest
restart: unless-stopped
networks:
- slbnetwork
env_file:
- ./config.env
ports:
- 127.0.0.1:8080:8080
depends_on:
- postgres
networks:
slbnetwork:
volumes:
slbdata:
postgresdata: