forked from btouellette/concarneau
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
54 lines (48 loc) · 1.72 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
version: '3.4'
services:
concarneau:
container_name: concarneau
image: "issmirnov/concarneau"
ports:
- 8080:8080
environment:
# set this to your externally resolvable URL fopr auth callback
- HOST=http://localhost
# - MONGO_URI=mongodb://admin:concarneau@mongodb/concarneau_db
- MONGO_URI=mongodb://mongodb/concarneau_db
- DISABLE_SSL=1
# Facebook oAuth credentials
# - FACEBOOK_CLIENT_ID # Your App Id
# - FACEBOOK_SECRET # Your App Secret
# # not required to be set as default is fine. Ovverride here if you need.
# # DEFAULTS TO HOST+PORT+${callback_url}
# # - FACEBOOK_CALLBACK
# # Google oAuth credentials
# - GOOGLE_CLIENT_ID # Your App Id (xx-yyy.apps.googleusercontent.com)
# - GOOGLE_SECRET # Your App Secret
# - GOOGLE_REFRESH_TOKEN
# # not required to be set as default is fine. Ovverride here if you need.
# # DEFAULTS TO HOST+PORT+${callback_url}
# # - GOOGLE_CALLBACK
# # Twitter oAuth credentials
# - TWITTER_ACCESS_TOKEN
# - TWITTER_ACCESS_SECRET
# - TWITTER_CONSUMER_KEY
# - TWITTER_SECRET
# # not required to be set as default is fine. Ovverride here if you need.
# # DEFAULTS TO HOST+PORT+${callback_url}
# # - TWITTER_CALLBACK
restart: unless-stopped
mongodb:
container_name: mongodb
image: mongo
environment:
# - MONGO_INITDB_ROOT_USERNAME=admin
# - MONGO_INITDB_ROOT_PASSWORD=concarneau
- MONGO_INITDB_DATABASE=concarneau_db
# If support, mask internal user gid/uid to avoid permissions issues.
- "PUID=1000"
- "PGID=1000"
volumes:
- './mongo-data:/data/db'
restart: unless-stopped