~dricottone/docker-moinmoin19

ref: d66dadc51cfff2e909b39b7d5e8b55648e6cc273 docker-moinmoin19/docker-compose.yml -rw-r--r-- 371 bytes
d66dadc5Dominic Ricottone fixed markdown blockquote 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/data
    networks:
      - backend

networks:
  backend:
    name: moin-net