summaryrefslogtreecommitdiff
path: root/services/wiki.yml
blob: f20f5486b5906af0f8b59771faab40ceceae9b0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
version: '3'

volumes:
  wiki_db:

services:
  wiki_mongo:
    image: mongo
    command: '--smallfiles --logpath=/dev/null'
    volumes:
      - wiki_db:/data/db

  wiki:
    build: $IMAGES/wiki
    ports:
      - "8080:80"
    depends_on:
      - wiki_mongo
    environment:
      WIKI_ADMIN_EMAIL: "till@hoeppner.ws"