-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
44 lines (38 loc) · 806 Bytes
/
docker-compose.yml
File metadata and controls
44 lines (38 loc) · 806 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
name: brickinv
services:
mariadb:
image: mariadb:11.6.2
restart: always
environment:
MARIADB_ROOT_PASSWORD: "brickinv"
volumes:
- "mariadb:/var/lib/mysql"
- "./setup.sql:/docker-entrypoint-initdb.d/setup.sql"
networks:
- internal
redis:
image: redis:7.4.1-alpine
restart: always
networks:
- internal
frontend:
image: ghcr.io/bennetrr/brickinv-frontend:v0.0.0
restart: always
networks:
- reverse_proxy
volumes:
- "./env.js:/usr/share/nginx/html/env/env.js"
backend:
image: ghcr.io/bennetrr/brickinv-backend:v0.0.0
restart: always
env_file:
- backend.env
networks:
- reverse_proxy
- internal
networks:
internal:
reverse_proxy:
external: true
volumes:
mariadb: