This commit is contained in:
qiaofeng1227 2023-08-22 13:53:45 +08:00
parent e6500e558b
commit 9811a4b623
4 changed files with 14 additions and 1 deletions

View file

@ -19,7 +19,9 @@ COPY config/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
COPY config/cmd.sh /cmd.sh
RUN chmod +x /etc/supervisor/conf.d/supervisord.conf /cmd.sh
RUN pip install -r requirements.txt
RUN mkdir /data
RUN mkdir /data
RUN mkdir /usr/src/app/config
COPY config/settings.conf /usr/src/app/config/
# Expose the port in which the application will be deployed
EXPOSE 5000

View file

@ -0,0 +1,10 @@
#appstore_preview_update=false
#domain=test.websoft9.com
#email=help@websoft9.com
#ip=127.0.0.1
#smtp_port=743
#smtp_server=smtp.websoft9.com
#smtp_tls/ssl=true
#smtp_user=admin
#smtp_password=password

Binary file not shown.

View file

@ -10,6 +10,7 @@ services:
volumes:
- appmanage-logs:/usr/src/app/logs
- appmanage-db:/usr/src/app/db
- appmanage-config:/usr/src/app/config
entrypoint: bash -c "/cmd.sh"
ports:
- ${APP_HTTP_PORT}:5000