1
0
Fork 0
This commit is contained in:
Ilya Mukhortov 2024-07-29 19:11:40 +10:00
parent c966b5fd2b
commit 7904b67380
5 changed files with 12 additions and 2 deletions

View File

@ -13,7 +13,7 @@ services:
UWSGI_THREADS: ${UWSGI_THREADS:-4} UWSGI_THREADS: ${UWSGI_THREADS:-4}
ports: ports:
- "${NGINX_PORT:-80}:80" - "${NGINX_PORT:-80}:80"
- "${NGINX_HTTPS_PORT:-433}:443" - "${NGINX_HTTPS_PORT:-443}:443"
volumes: volumes:
- medicine-public-data:/app/public - medicine-public-data:/app/public
networks: networks:

View File

@ -1,3 +1,3 @@
#!/bin/sh #!/bin/sh
docker-compose logs --tail 100 --follow app docker-compose logs --tail 100 --follow

3
service-messaging/enter.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
docker-compose exec service-messaging bash

3
service-messaging/logs.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
docker-compose logs --tail 100 --follow

4
service-messaging/restart.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh
docker-compose stop
docker-compose up -d