-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdocker-compose.yml
55 lines (53 loc) · 1.37 KB
/
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
48
49
50
51
52
53
54
55
version: "3.7"
services:
app:
build:
args:
user: sammy
uid: 1000
context: ./
dockerfile: Dockerfile
image: travellist
container_name: travellist-app
restart: unless-stopped
working_dir: /var/www/
volumes:
- ./:/var/www
networks:
- travellist
# The official Docker mariadb image will run all *.sh and *.sql scripts in its /docker-entrypoint-initdb.d directory automatically when it starts.
db:
volumes:
- ./mariadb_data:/var/lib/mysql
# - ./docker-compose/mysql:/docker-entrypoint-initdb.d
- ./mysql-dump:/docker-entrypoint-initdb.d
# - ./mariadb.cnf:/etc/mysql/conf.d/mariadb.cnf
image: mariadb:latest
container_name: travellist-db
restart: unless-stopped
environment:
MYSQL_DATABASE: travellist
MYSQL_ROOT_PASSWORD: RootPassword123!
MYSQL_USER: travellist_user
MYSQL_PASSWORD: Password123!
SERVICE_TAGS: dev
SERVICE_NAME: mysql
ports:
- "3306:3306"
networks:
- travellist
command: --init-file /docker-entrypoint-initdb.d/init_db.sql
nginx:
image: nginx:alpine
container_name: travellist-nginx
restart: unless-stopped
ports:
- 8000:80
volumes:
- ./:/var/www
- ./docker-compose/nginx:/etc/nginx/conf.d/
networks:
- travellist
networks:
travellist:
driver: bridge