First Upload

This commit is contained in:
2024-11-06 19:09:33 +00:00
commit d971d5d522
22 changed files with 5606 additions and 0 deletions

23
docker-compose.yml Executable file
View File

@@ -0,0 +1,23 @@
services:
gobgp:
build: ./gobgp
ports:
- "172.16.1.66:179:179"
volumes:
- .:/var/tmp
restart: always
mongodb:
image: mongo:latest
expose:
- 27017
volumes:
- ./db:/data/db
flask:
build: ./flask
ports:
- 80:80
volumes:
- ./flask/app:/var/www/app
- ./flask/app/log:/var/log/uwsgi/app