-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
45 lines (43 loc) · 1.06 KB
/
docker-compose.yml
File metadata and controls
45 lines (43 loc) · 1.06 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
# services:
# nextjs:
# build:
# context: .
# dockerfile: Dockerfile
# ports:
# - "3000:3000"
# extra_hosts:
# - "database:64.91.224.123"
# environment:
# - APP_URL=http://listen.eternityready.com
# - NEXT_PUBLIC_APP_URL=http://listen.eternityready.com
# - DB_HOST=database
# - DB_PORT=3306
# - DB_USERNAME=eternity_docker
# - DB_PASSWORD="^*!*P5hGxe-Q*b"
# - DB_NAME=eternity
# restart: always
# depends_on:
# - nextmysql
# volumes:
# - ./public:/app/public
# nextmysql:
# image: mysql:latest
# restart: always
# environment:
# MYSQL_ROOT_PASSWORD: "eternity"
# MYSQL_DATABASE: "eternity"
# MYSQL_USER: "eternity"
# MYSQL_PASSWORD: "eternity"
# ports:
# - "3306:3306"
# volumes:
# - ./init:/docker-entrypoint-initdb.d
# nextphpmyadmin:
# image: phpmyadmin/phpmyadmin
# ports:
# - "4080:80"
# environment:
# TZ: Asia/Kolkata
# PMA_HOST: nextmysql
# depends_on:
# - nextmysql