This repository has been archived on 2021-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
greenlight/docker-compose.yml

37 lines
815 B
YAML
Raw Normal View History

2018-06-20 15:24:39 -04:00
version: '3'
2018-07-05 17:25:59 -04:00
services:
2018-06-20 15:24:39 -04:00
app:
entrypoint: [bin/start]
2018-07-06 11:42:50 -04:00
image: bigbluebutton/greenlight:v2
2018-07-05 17:25:59 -04:00
container_name: greenlight-v2
2018-10-26 11:59:49 -04:00
env_file: .env
2018-06-20 15:24:39 -04:00
restart: unless-stopped
ports:
2018-07-05 17:25:59 -04:00
- 5000:80
2019-05-24 11:53:40 -04:00
# When using external logging
2018-10-26 11:59:49 -04:00
# logging:
# driver: $LOG_DRIVER
# options:
# syslog-address: $LOG_ADDRESS
# tag: $LOG_TAG
2019-06-26 10:54:03 -04:00
volumes:
- ./log:/usr/src/app/log
# When using sqlite3 as the database
# - ./db/production:/usr/src/app/db/production
2019-05-24 11:53:40 -04:00
# When using postgresql as the database
links:
- db
db:
image: postgres:9.5
restart: on-failure
ports:
- 5432:5432
volumes:
- ./db/production:/var/lib/postgresql/data
environment:
- PGHOST=postgres
- PGDATABASE=postgres
- PGUSER=postgres
- PGPASSWORD=password