OSP changing quote characters to double quote. Reformatting to 2 space indentation.

This commit is contained in:
Alexey Skobkin 2020-04-15 23:23:21 +03:00
parent c617a7c14b
commit a7c61b9e97
No known key found for this signature in database
GPG Key ID: 5D5CEF6F221278E7
1 changed files with 28 additions and 27 deletions

View File

@ -1,29 +1,30 @@
# https://gitlab.com/Deamos/flask-nginx-rtmp-manager/-/blob/master/docker-compose.yml
version: '3.4'
version: '3.7'
services:
redis:
image: redis
container_name: ospredis
expose:
- 6379
app:
image: deamos/openstreamingplatform
ports:
- '1935:1935'
- 'localhost:8585:80'
- 'localhost:8553:443'
environment:
- REDIS_HOST="ospredis"
- REDIS_PORT=6379
- REDIS_PASSWORD=""
env_file: .env
volumes:
- "${STORAGE_DIR}:/var/www"
- "${DATABASE_DIR}:/opt/osp/db"
- "${NGINX_DIR}:/usr/local/nginx/conf"
restart: unless-stopped
logging:
driver: "json-file"
options:
max-size: "${LOG_MAX_SIZE:-5m}"
max-file: "${LOG_MAX_FILE:-5}"
redis:
image: redis
container_name: ospredis
expose:
- 6379
app:
image: deamos/openstreamingplatform
ports:
- "1935:1935/tcp"
- "localhost:8585:80/tcp"
- "localhost:8553:443/tcp"
environment:
- REDIS_HOST="ospredis"
- REDIS_PORT=6379
- REDIS_PASSWORD=""
env_file: .env
volumes:
- "${STORAGE_DIR}:/var/www"
- "${DATABASE_DIR}:/opt/osp/db"
- "${NGINX_DIR}:/usr/local/nginx/conf"
restart: unless-stopped
logging:
driver: "json-file"
options:
max-size: "${LOG_MAX_SIZE:-5m}"
max-file: "${LOG_MAX_FILE:-5}"