1
0
Fork 0
mirror of https://github.com/fastogt/fastocloud_admin.git synced 2025-03-09 23:38:52 +00:00
fastocloud_admin/docker-compose.yml
2019-08-29 07:33:15 -04:00

35 lines
849 B
YAML

version: '2'
services:
mongodb:
image: mongo:latest
container_name: mongodb
ports:
- 27017:27017
fastocloud_admin:
build:
context: ./
dockerfile: Dockerfile
image: fastocloud_admin
container_name: fastocloud_admin
depends_on:
- mongodb
command: ./server.py
ports:
- 8080:8080
iptv:
build: https://github.com/fastogt/fastocloud.git
container_name: fastocloud
ports:
- 6317:6317
- 8000:8000
- 7000:7000
- 6000:6000
nginx:
image: nginx
container_name: nginx
depends_on:
- fastocloud_admin
volumes:
- ./nginx/nginx.conf:/etc/nginx/nginx.conf
ports:
- 80:80