Update 'docker-compose.yml'

This commit is contained in:
devdatt 2021-05-31 09:03:27 +00:00
parent 5218a76cf5
commit 46301881ee
1 changed files with 301 additions and 301 deletions

View File

@ -14,7 +14,7 @@ version : '2.2'
services : services :
nginx_proxy : nginx_proxy :
container_name : nginx_proxy container_name : nginx_proxy
image : "anatsam/azuracast_nginx_proxy" image : "anatsam/azuracast_nginx_proxy:latest"
ports : ports :
- '${AZURACAST_HTTP_PORT:-80}:80' - '${AZURACAST_HTTP_PORT:-80}:80'
- '${AZURACAST_HTTPS_PORT:-443}:443' - '${AZURACAST_HTTPS_PORT:-443}:443'
@ -34,7 +34,7 @@ services :
nginx_proxy_letsencrypt : nginx_proxy_letsencrypt :
container_name : nginx_proxy_letsencrypt container_name : nginx_proxy_letsencrypt
image : "anatsam/azuracast_nginx_proxy_letsencrypt" image : "anatsam/azuracast_nginx_proxy_letsencrypt:latest"
volumes_from : volumes_from :
- nginx_proxy - nginx_proxy
volumes : volumes :
@ -48,7 +48,7 @@ services :
web : web :
container_name : azuracast_web container_name : azuracast_web
image : "anatsam/azuracast_web_v2" image : "anatsam/azuracast_web_v2:latest"
# Want to customize the HTTP/S ports? Follow the instructions here: # Want to customize the HTTP/S ports? Follow the instructions here:
# https://docs.azuracast.com/en/administration/docker#using-non-standard-ports # https://docs.azuracast.com/en/administration/docker#using-non-standard-ports
ports : ports :
@ -91,7 +91,7 @@ services :
mariadb : mariadb :
container_name : azuracast_mariadb container_name : azuracast_mariadb
image : "anatsam/azuracast_db" image : "anatsam/azuracast_db:latest"
volumes : volumes :
- db_data:/var/lib/mysql - db_data:/var/lib/mysql
env_file : azuracast.env env_file : azuracast.env
@ -102,7 +102,7 @@ services :
redis : redis :
container_name : azuracast_redis container_name : azuracast_redis
image : "anatsam/azuracast_redis" image : "anatsam/azuracast_redis:latest"
sysctls : sysctls :
net.core.somaxconn : 1024 net.core.somaxconn : 1024
volumes : volumes :
@ -114,7 +114,7 @@ services :
stations : stations :
container_name : azuracast_stations container_name : azuracast_stations
image : "anatsam/azuracast_radio" image : "anatsam/azuracast_radio:latest"
ports : ports :
# This default mapping is the outgoing and incoming ports for the first 50 stations. # This default mapping is the outgoing and incoming ports for the first 50 stations.
# You can override this port mapping in your own docker-compose.override.yml file. # You can override this port mapping in your own docker-compose.override.yml file.