docker-experimental-images/ovm
2020-02-27 15:49:33 +03:00
..
.docker-repository.yml init 2020-02-27 15:49:33 +03:00
.dockerignore init 2020-02-27 15:49:33 +03:00
container.ini init 2020-02-27 15:49:33 +03:00
Dockerfile init 2020-02-27 15:49:33 +03:00
Makefile init 2020-02-27 15:49:33 +03:00
omv-startup init 2020-02-27 15:49:33 +03:00
openmediavault.list init 2020-02-27 15:49:33 +03:00
README.md init 2020-02-27 15:49:33 +03:00

Compose example

version: '3.7'
services:
  balancer:
    image: epicmorg/balancer
    restart: unless-stopped
    ports:
      - "0.0.0.0:80:80"
      - "0.0.0.0:443:443"
    volumes:
      - /etc/localtime:/etc/localtime
      - /etc/timezone:/etc/timezone
      - /etc/letsencrypt:/etc/letsencrypt
      - nginx:/etc/nginx
      - nginx-usr:/usr/share/nginx/html
      - /var/lib/nginx
#    extra_hosts:
#      - "example.com:192.168.0.11"
    depends_on:
      - websites
    tmpfs:
      - /tmp
volumes:
  nginx:
    external: true
  nginx-usr:
    external: true