Initial Release - v1.0.0

This commit is contained in:
Adi Chirilov
2020-08-21 11:54:03 +03:00
parent e3e8c2db6e
commit 8295e32fc2
238 changed files with 42591 additions and 1 deletions

27
docker-compose.yml Normal file
View File

@ -0,0 +1,27 @@
version: '3'
services:
appseed-app:
restart: always
env_file: .env
build: .
ports:
- "5005:5005"
networks:
- db_network
- web_network
nginx:
restart: always
image: "nginx:latest"
ports:
- "85:85"
volumes:
- ./nginx:/etc/nginx/conf.d
networks:
- web_network
depends_on:
- appseed-app
networks:
db_network:
driver: bridge
web_network:
driver: bridge