mirror of
https://github.com/Websoft9/websoft9.git
synced 2024-11-22 15:40:22 +00:00
settings
This commit is contained in:
parent
e6500e558b
commit
9811a4b623
4 changed files with 14 additions and 1 deletions
|
@ -20,6 +20,8 @@ COPY config/cmd.sh /cmd.sh
|
||||||
RUN chmod +x /etc/supervisor/conf.d/supervisord.conf /cmd.sh
|
RUN chmod +x /etc/supervisor/conf.d/supervisord.conf /cmd.sh
|
||||||
RUN pip install -r requirements.txt
|
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 the port in which the application will be deployed
|
||||||
EXPOSE 5000
|
EXPOSE 5000
|
||||||
|
|
10
appmanage/config/settings.conf
Normal file
10
appmanage/config/settings.conf
Normal 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.
|
@ -10,6 +10,7 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- appmanage-logs:/usr/src/app/logs
|
- appmanage-logs:/usr/src/app/logs
|
||||||
- appmanage-db:/usr/src/app/db
|
- appmanage-db:/usr/src/app/db
|
||||||
|
- appmanage-config:/usr/src/app/config
|
||||||
entrypoint: bash -c "/cmd.sh"
|
entrypoint: bash -c "/cmd.sh"
|
||||||
ports:
|
ports:
|
||||||
- ${APP_HTTP_PORT}:5000
|
- ${APP_HTTP_PORT}:5000
|
||||||
|
|
Loading…
Reference in a new issue