summaryrefslogtreecommitdiffstats
path: root/.examples/docker-compose/with-nginx-proxy/fpm/docker-compose.yml
blob: bbe5ec32621844f42d100aaa052fecf00f4db52c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
version: '3'

volumes:
  certs:
  conf.d:
  vhost.d:
  html:
  nextcloud:
  db:

networks:
  proxy-tier:

services:
  proxy:
    build: proxy
    ports:
      - 80:80
      - 443:443
    volumes:
      - conf.d:/etc/nginx/conf.d
      - vhost.d:/etc/nginx/vhost.d
      - html:/usr/share/nginx/html
      - certs:/etc/nginx/certs:ro
      - /var/run/docker.sock:/tmp/docker.sock:ro
    networks:
      - proxy-tier
    labels:
      - com.github.jrcs.letsencrypt_nginx_proxy_companion.nginx_proxy
    restart: always

  letsencrypt-companion:
    image: jrcs/letsencrypt-nginx-proxy-companion
    volumes:
      - conf.d:/etc/nginx/conf.d
      - vhost.d:/etc/nginx/vhost.d
      - html:/usr/share/nginx/html
      - certs:/etc/nginx/certs:rw
      - /var/run/docker.sock:/var/run/docker.sock:ro
    networks:
      - proxy-tier
    restart: always

  web:
    build: web
    volumes:
      - nextcloud:/var/www/html
    environment:
      - VIRTUAL_HOST=
      - LETSENCRYPT_HOST=
      - LETSENCRYPT_EMAIL=
    networks:
      - proxy-tier
      - default
    restart: always

  app:
    build: app
    env_file:
      - db.env
    volumes:
      - nextcloud:/var/www/html
    restart: always

  db:
    image: mariadb
    volumes:
      - db:/var/lib/mysql
    env_file:
      - db.env
    environment:
      - MYSQL_ROOT_PASSWORD=
    restart: always

  redis:
    image: redis
    restart: always

  collabora:
    image: collabora/code
    cap_add:
      - MKNOD
    environment:
      - domain=
    restart: always