-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
53 lines (50 loc) · 1.27 KB
/
Copy pathdocker-compose.yml
File metadata and controls
53 lines (50 loc) · 1.27 KB
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
services:
# App Service
app:
build:
args:
user: msamgan
uid: 1000
context: .
dockerfile: Dockerfile
image: ms0-app
container_name: ms0-app
restart: unless-stopped
working_dir: /var/www
volumes:
- ./:/var/www
ports:
- "5173:5173"
networks:
- ms0-network
# Web Service
web:
image: nginx:alpine
container_name: ms0-web
restart: unless-stopped
ports:
- "8000:80"
volumes:
- ./:/var/www
- ./docker-compose/nginx:/etc/nginx/conf.d/
networks:
- ms0-network
# Database Service
db:
image: mysql:8.0
container_name: ms0-db
restart: unless-stopped
environment:
MYSQL_DATABASE: ${DB_DATABASE:-ms0}
MYSQL_ROOT_PASSWORD: ${DB_PASSWORD:-secret}
MYSQL_PASSWORD: ${DB_PASSWORD:-secret}
MYSQL_USER: ${DB_USERNAME:-msamgan}
SERVICE_TAGS: dev
SERVICE_NAME: mysql
volumes:
- ./docker-compose/mysql:/var/lib/mysql
networks:
- ms0-network
networks:
ms0-network:
driver: bridge