-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
41 lines (39 loc) · 945 Bytes
/
docker-compose.yml
File metadata and controls
41 lines (39 loc) · 945 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
version: "3.3"
services:
db:
container_name: nedrex-web-db
image: mysql
command: --default-authentication-plugin=mysql_native_password
restart: on-failure
environment:
MYSQL_DATABASE: reposcape
MYSQL_ROOT_PASSWORD: example
MYSQL_USER: reposcaper
MYSQL_PASSWORD: repotrial
volumes:
- nedrex-db-volume:/var/lib/mysql
cap_add:
- SYS_NICE
server:
container_name: nedrex-web-server
image: andimajore/nedrex_repo:server_exbio
depends_on:
- "db"
volumes:
- nedrex-cache-volume:/etc/data/db
- nedrex-usr-volume:/etc/data/usr
environment:
- spring_profiles_active=exbio
ports:
- "8034:8090"
restart: on-failure
web:
container_name: nedrex-web-view
image: andimajore/nedrex_repo:web_exbio
ports:
- "8024:8080"
restart: on-failure
volumes:
nedrex-db-volume:
nedrex-usr-volume:
nedrex-cache-volume: