add docker-compose.yml to staging version and add docker-compose-prod.yml to production version
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
version: "3.8"
|
||||
services:
|
||||
aero:
|
||||
build: .
|
||||
restart: always
|
||||
volumes:
|
||||
- ./:/aero
|
||||
command:
|
||||
- /bin/sh
|
||||
- -c
|
||||
- poetry run python /aero/main.py
|
||||
environment:
|
||||
- TZ=Asia/Krasnoyarsk
|
||||
mongodb:
|
||||
image: mongo
|
||||
restart: always
|
||||
volumes:
|
||||
- ./mongodb:/data/db
|
||||
environment:
|
||||
- TZ=Asia/Krasnoyarsk
|
||||
Reference in New Issue
Block a user