ecb77ddb56
* Add version variable for travis tests * Fix typo * Fix activemq variable * Add travis tests * Remove mysql latest * Fixes & refactoring * Add more travis tests * Remove mysql 8 test * Remove mysql 8 test [2] * Add mysql 8 comment * Fix mysql 8 auth plugin Co-authored-by: Alexey Golubev <alexey.golubev@onlyoffice.com>
30 lines
614 B
YAML
30 lines
614 B
YAML
version: '2.1'
|
|
services:
|
|
onlyoffice-documentserver:
|
|
container_name: onlyoffice-documentserver
|
|
build:
|
|
context: ../.
|
|
environment:
|
|
- AMQP_TYPE=${AMQP_TYPE:-rabbitmq}
|
|
- AMQP_URI=${AMQP_URI:-amqp://guest:guest@onlyoffice-rabbitmq}
|
|
stdin_open: true
|
|
restart: always
|
|
ports:
|
|
- '80:80'
|
|
- '443:443'
|
|
networks:
|
|
- onlyoffice
|
|
|
|
onlyoffice-rabbitmq:
|
|
container_name: onlyoffice-rabbitmq
|
|
image: rabbitmq:${RABBITMQ_VERSION:-latest}
|
|
restart: always
|
|
networks:
|
|
- onlyoffice
|
|
expose:
|
|
- '5672'
|
|
|
|
networks:
|
|
onlyoffice:
|
|
driver: 'bridge'
|