-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
36 lines (32 loc) · 826 Bytes
/
docker-compose.yml
File metadata and controls
36 lines (32 loc) · 826 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
version: '3.1'
services:
mongo:
image: mongo
# ... or for raspberry pi 2
# image: apcheamitru/arm32v7-mongo:latest
restart: always
ports:
- 27018:27017
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: <define-password>
mongo-express:
image: mongo-express
restart: always
ports:
- 8011:8081
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: <define-password>
neon-server:
image: tknapp/neon:latest
# ... or for raspberry pi 2
# image: tknapp/neon:latest-arm32v7
restart: always
ports:
- 8010:80
environment:
MongoDb__Hostname: mongo
MongoDb__Username: root
MongoDb__Password: <define-password>
ASPNETCORE_URLS: "http://+:80"