-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
51 lines (48 loc) · 899 Bytes
/
docker-compose.yml
File metadata and controls
51 lines (48 loc) · 899 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
47
48
49
50
51
version: '3'
services:
db:
image: mysql:latest
container_name: db
restart: always
ports:
- 3307:3307
expose:
- 3307
env_file:
- .env
command:
- --character-set-server=utf8mb4
- --collation-server=utf8mb4_unicode_ci
volumes:
- dbdata:/var/lib/mysql
web:
container_name: web
build:
context: ./
dockerfile: Dockerfile
command: java -jar -Dspring.profiles.active=dev app.jar
env_file:
- .env
volumes:
- static:/home/app/web/static
- media:/home/app/web/media
expose:
- 8000
ports:
- "8080:8080"
depends_on:
- db
nginx:
container_name: nginx
build: ./config/nginx
volumes:
- static:/home/app/web/static
- media:/home/app/web/media
ports:
- "80:80"
depends_on:
- web
volumes:
dbdata:
static:
media: