~dricottone/docker-moinmoin19

ref: 753045b1d04b5392334ec1a28788e82d2ff2c765 docker-moinmoin19/docker-compose.yml -rw-r--r-- 374 bytes
753045b1Dominic Ricottone added BSD license 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