forked from Developer-Club-WMU/webdev-landing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
36 lines (35 loc) · 790 Bytes
/
docker-compose.yml
File metadata and controls
36 lines (35 loc) · 790 Bytes
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
services:
web:
restart: unless-stopped
image: devclubwmu/devclub-prod:webdev-landing
container_name: webdev-landing-prod
ports:
- "3000:3000"
environment:
NODE_ENV: production
NEXTAUTH_URL: https://devwmu.com
secrets:
- deploy_id
- webapp_url
- nextauth_secret
- discord_auth_id
- discord_auth_secret
- db_url
networks:
- devnet
networks:
devnet:
external: true
secrets:
deploy_id:
file: ./secrets/deploy_id.txt
webapp_url:
file: ./secrets/webapp_url.txt
nextauth_secret:
file: ./secrets/nextauth_secret.txt
discord_auth_id:
file: ./secrets/discord_auth_id.txt
discord_auth_secret:
file: ./secrets/discord_auth_secret.txt
db_url:
file: ./secrets/db_url.txt