Compare commits

..

3 Commits

Author SHA1 Message Date
mcotton a3c530bac8 updated python in docker, fixed port mapping for workstation 2023-10-25 21:36:55 -05:00
Mark Cotton 693b6c1069 ignoring local db file 2023-10-05 21:21:45 -05:00
Mark Cotton e501a5b1b2 merging database branch 2023-10-05 21:18:39 -05:00
3 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@ -12,4 +12,5 @@ git-version.txt
settings.py
*.db
videos/*
instance/project.db

View File

@ -1,5 +1,5 @@
FROM python:3.9-slim
FROM python:3.10-slim
COPY ./requirements.txt /app/requirements.txt

View File

@ -6,7 +6,7 @@ services:
volumes:
- .:/app
ports:
- "9400:3000"
- "3333:3000"
restart: always
tty: true
user: 1000:1000