~dricottone/docker-moinmoin19

ref: 60a1ffe060774247a82aebdb06e01c490a67930a docker-moinmoin19/docker-compose.yml -rw-r--r-- 371 bytes
60a1ffe0Dominic Ricottone restructured container for security, readability; re-wrote documentation 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