Advertisement
lionelp

docker-compose

Mar 7th, 2019
978
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.80 KB | None | 0 0
  1. version: '2'
  2.  
  3. services:
  4.     wex_server_proxy:
  5.         extends:
  6.           file: ${WEX_COMPOSE_YML_PROXY}
  7.           service: proxy
  8.         ports:
  9.           - "80:80"
  10.           - "443:443"
  11.     wex_server_proxy_certs:
  12.         extends:
  13.           file: ${WEX_COMPOSE_YML_PROXY}
  14.           service: certs
  15.         # DEBUG environment:
  16.         #  - ACME_CA_URI=https://acme-staging.api.letsencrypt.org/directory
  17.         volumes_from:
  18.           - ${SITE_NAME}_proxy
  19.     wex_server_proxy_entrypoint:
  20.         extends:
  21.           file: ${WEX_COMPOSE_YML_PROXY}
  22.           service: entrypoint
  23.         ports:
  24.           - '99:80'
  25.     wex_server_proxy_ftp:
  26.         extends:
  27.           file: ${WEX_COMPOSE_YML_PROXY}
  28.           service: ftp
  29.         ports:
  30.           - "21:21"
  31.           - "30000-30059:30000-30059"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement