-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathdocker-compose.yml
48 lines (47 loc) · 990 Bytes
/
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
version: "3.7"
services:
app:
build:
args:
user: foggy
uid: 1000
context: .
dockerfile: Dockerfile
image: embedditor
container_name: embedditor-app
restart: unless-stopped
working_dir: /var/www/
volumes:
- .:/var/www
networks:
- embedditor
db:
image: mysql:5.7
container_name: embedditor-db
restart: unless-stopped
command: [--ignore-db-dir=lost+found]
ports:
- "13306:3306"
environment:
MYSQL_DATABASE: embedditor
MYSQL_ROOT_PASSWORD: 1234
SERVICE_TAGS: dev
SERVICE_NAME: mysql
volumes:
- ./docker/mysql:/docker-entrypoint-initdb.d
networks:
- embedditor
nginx:
image: nginx:alpine
container_name: embedditor-nginx
restart: unless-stopped
ports:
- 8030:80
volumes:
- .:/var/www
- ./docker/nginx:/etc/nginx/conf.d/
networks:
- embedditor
networks:
embedditor:
driver: bridge