-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathdocker-compose.prod.yaml
71 lines (69 loc) · 1.79 KB
/
docker-compose.prod.yaml
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
version: "3.3"
services:
web:
image: tryabby/web
build:
context: .
dockerfile: ./apps/web/Dockerfile
ports:
- "3000:3000"
environment:
DATABASE_URL: "mysql://root:password@db:3306/abby"
NODE_ENV: "development"
NEXTAUTH_SECRET: "secret"
NEXTAUTH_URL: "http://localhost:3000"
EMAIL_SERVER: "smtp://mailhog:1025"
GITHUB_ID: "null"
GITHUB_SECRET: "null"
GOOGLE_CLIENT_ID: ""
GOOGLE_CLIENT_SECRET: ""
REDIS_URL: "redis://redis:6379"
ABBY_FROM_EMAIL: "[email protected]"
GITHUB_OAUTH_TOKEN: ""
STRIPE_WEBHOOK_SECRET: "null"
STRIPE_SECRET_KEY: "null"
LOGSNAG_API_KEY: "null"
HASHING_SECRET: "secret"
NEXT_PUBLIC_PLAUSIBLE_DOMAIN: "tryabby.com"
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY: "null"
NEXT_PUBLIC_STRIPE_STARTER_PLAN_PRICE_ID: "null"
NEXT_PUBLIC_STRIPE_PRO_PLAN_PRICE_ID: "null"
NEXT_PUBLIC_ABBY_PROJECT_ID: "null"
db:
image: mariadb
restart: always
environment:
MYSQL_DATABASE: "db"
# So you don't have to use root, but you can if you like
MYSQL_USER: "root"
# You can use whatever password you like
MYSQL_PASSWORD: "password"
# Password for root access
MYSQL_ROOT_PASSWORD: "password"
ports:
# <Port exposed> : < MySQL Port running inside container>
- "3306:3306"
expose:
# Opens port 3306 on the container
- "3306"
# Where our data will be persisted
volumes:
- my-db:/var/lib/mysql
redis:
image: redis
restart: always
ports:
- "6379:6379"
expose:
- "6379"
volumes:
- my-redis:/data
mailhog:
image: mailhog/mailhog
ports:
- "1025:1025"
- "8025:8025"
# Names our volume
volumes:
my-db:
my-redis: