-
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) · 1.01 KB
/
docker-compose.yml
File metadata and controls
51 lines (48 loc) · 1.01 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
version: "3.7"
services:
app:
build:
args:
user: your_user
uid: 1000
context: ./
dockerfile: Dockerfile
image: iahorro
container_name: iahorro-app-php
restart: unless-stopped
working_dir: /var/www/
volumes:
- ./:/var/www
networks:
- iahorro
db:
image: mysql:8.0.0
container_name: iahorro-db-mysql
restart: unless-stopped
ports:
- "3308:3306"
environment:
MYSQL_DATABASE: iahorro
MYSQL_ROOT_PASSWORD: root_password
MYSQL_PASSWORD: your_user_password
MYSQL_USER: your_user
SERVICE_TAGS: dev
SERVICE_NAME: mysql
volumes:
- ./docker-compose/mysql:/docker-entrypoint-initdb.d
networks:
- iahorro
nginx:
image: nginx:alpine
container_name: iahorro-nginx-server
restart: unless-stopped
ports:
- "8081:80"
volumes:
- ./:/var/www
- ./docker-compose/nginx:/etc/nginx/conf.d
networks:
- iahorro
networks:
iahorro:
driver: bridge