-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompose.yml
87 lines (80 loc) · 2.13 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
services:
laravel:
build:
context: 'packages/web'
extra_hosts:
- 'host.docker.internal:host-gateway'
ports:
- '${APP_PORT:-80}:80'
- '${VITE_PORT:-5173}:${VITE_PORT:-5173}'
- '${REVERB_PORT:-8080}:${REVERB_PORT:-8080}'
environment:
WWWUSER: '${WWWUSER}'
IGNITION_LOCAL_SITES_PATH: '${PWD}'
volumes:
- './packages/web:/var/www/html'
networks:
- vash-net
depends_on:
- pgsql
- redis
labels:
- "traefik.enable=true"
- "traefik.http.routers.laravel.rule=Host(`esports.vash.software`)"
- "traefik.http.services.laravel.loadbalancer.server.port=${APP_PORT:-80}"
pgsql:
image: 'postgres:17'
ports:
- '${FORWARD_DB_PORT:-5432}:5432'
environment:
PGPASSWORD: '${DB_PASSWORD:-secret}'
POSTGRES_DB: '${DB_DATABASE}'
POSTGRES_USER: '${DB_USERNAME}'
POSTGRES_PASSWORD: '${DB_PASSWORD:-secret}'
volumes:
- 'vash-pgsql:/var/lib/postgresql/data'
networks:
- vash-net
healthcheck:
test:
- CMD
- pg_isready
- '-q'
- '-d'
- '${DB_DATABASE}'
- '-U'
- '${DB_USERNAME}'
retries: 3
timeout: 5s
redis:
image: 'redis:alpine'
ports:
- '${FORWARD_REDIS_PORT:-6379}:6379'
volumes:
- 'vash-redis:/data'
networks:
- vash-net
healthcheck:
test:
- CMD
- redis-cli
- ping
retries: 3
timeout: 5s
osu:
build: packages/osu
restart: unless-stopped
ports:
- '${OSU_PORT:-3000}:3000'
networks:
- vash-net
networks:
vash-net:
driver: bridge
traefik_net:
external: true
volumes:
vash-pgsql:
driver: local
vash-redis:
driver: local