1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
version: '3.8' services: freepbx: image: tiredofit/freepbx:15-latest ports: - "80:80" - "443:443" - "5060:5060" - "5160:5160" environment: - TZ=Asia/Tokyo myapp: image: myapp:latest ports: - "5000:5000" environment: - ASPNETCORE_ENVIRONMENT=Production |