1
0
mirror of https://github.com/daniviga/bite.git synced 2024-11-24 22:06:13 +01:00

Compare commits

...

2 Commits

3 changed files with 6 additions and 5 deletions

View File

@ -39,7 +39,7 @@ services:
networks:
- net
ports:
- "${CUSTOM_DOCKER_IP:-0.0.0.0}:123:123/udp"
- "${CUSTOM_DOCKER_IP:-0.0.0.0}:1230:123/udp" # PORT 123 CAN BE USED WHEN RUNNING AS PRIVILEGED USER
timescale:
<<: *service_default
@ -68,11 +68,11 @@ services:
environment:
NGINX_ENTRYPOINT_QUIET_LOGS: 1
ports:
- "${CUSTOM_DOCKER_IP:-0.0.0.0}:80:80"
- "${CUSTOM_DOCKER_IP:-0.0.0.0}:8080:80" # PORT 80 CAN BE USED WHEN RUNNING AS PRIVILEGED USER
networks:
- net
volumes:
- "staticdata:/srv/appdata/bite/static:U"
- "staticdata:/srv/appdata/bite/static:U" # REMOVE ':U' ON MOBY/DOCKER
- "./ingress/nginx.conf:/etc/nginx/nginx.conf"
@ -101,7 +101,7 @@ services:
static-files:
image: daniviga/bite
volumes:
- "staticdata:/srv/appdata/bite/static:U"
- "staticdata:/srv/appdata/bite/static:U" # REMOVE ':U' ON MOBY/DOCKER
command: ["python3", "manage.py", "collectstatic", "--noinput"]
mqtt-to-db:

View File

@ -17,7 +17,7 @@
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
FROM alpine:3.12
FROM alpine:3.15
RUN apk update && apk add chrony && \
chown -R chrony:chrony /var/lib/chrony

View File

@ -1,3 +1,4 @@
pytz
Django
djangorestframework
django-health-check