-
Notifications
You must be signed in to change notification settings - Fork 92
/
docker-compose.yml
56 lines (54 loc) Β· 1.31 KB
/
docker-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
version: "3.3"
services:
odin:
image: odin:latest
build:
context: .
dockerfile: Dockerfile
container_name: odin
shm_size: '2gb'
depends_on:
- odin-db
- redis
security_opt:
- seccomp:./chrome.json
ports:
- "127.0.0.1:8080:80"
volumes:
- app:/var/www/storage
environment:
- REGISTRATIONS_ENABLED=true
- ENFORCE_DOMAIN=false
- HORIZON_ENABLED=true
- DEBUGBAR_ENABLED=false
- QUEUE_CONNECTION=redis
- APP_DEBUG=false
- APP_KEY=base64:MrL+FkntVikKuJYzMAavYrC/FXA3aT6tNGpkwRw8Ef8=
- APP_URL=http://localhost:8080
- PROXY_URL=http://localhost:8080
- DB_PASSWORD=db_password1234
- DB_HOST=odin-db
- DB_USERNAME=odin
- REDIS_HOST=redis
- REDIS_PASSWORD=redis_password1234
restart: always
odin-db:
image: mariadb:latest
restart: always
container_name: odin-db
volumes:
- db:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=db_root_password
- MYSQL_PASSWORD=db_password1234
- MYSQL_DATABASE=odin
- MYSQL_USER=odin
redis:
image: redis:latest
container_name: redis
command: redis-server --requirepass redis_password1234
restart: always
volumes:
app: {}
db: {}