~dricottone/docker-moinmoin19

ref: 591c16cb55439282b54f11e53155a680e62534ab docker-moinmoin19/docker-compose.yml -rw-r--r-- 374 bytes
591c16cbDominic Ricottone fixed markdown (was using moin syntax) 4 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
version: '3.7'
services:
  web:
    container_name: moin-nginx
    image: nginx:stable-alpine
    volumes:
      - nginx:/etc/nginx/conf.d:ro
    networks:
      - backend
    ports:
      - 8080:80

  app:
    container_name: moin-uwsgi
    build: .
    volumes:
      - /var/moin:/var/moin/wiki/data
    networks:
      - backend

networks:
  backend:
    name: moin-net