Compare commits
3 Commits
20aadb5eb8
...
2c0852d02c
| Author | SHA1 | Date | |
|---|---|---|---|
| 2c0852d02c | |||
| eb0870863c | |||
| f2b25f6f30 |
11
CineSync/Dockerfile
Normal file
11
CineSync/Dockerfile
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
FROM python:3.11
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
COPY . .
|
||||||
|
|
||||||
|
RUN pip install --no-cache-dir -r requirements.txt
|
||||||
|
|
||||||
|
RUN python manage.py collectstatic --noinput
|
||||||
|
|
||||||
|
CMD ["gunicorn", "--bind", "0.0.0.0:8000", "CineSync.wsgi:application"]
|
||||||
32
docker-compose.yml
Normal file
32
docker-compose.yml
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
version: '3.8'
|
||||||
|
|
||||||
|
services:
|
||||||
|
web:
|
||||||
|
build: .
|
||||||
|
container_name: django_app
|
||||||
|
command: gunicorn --bind 0.0.0.0:8000 CineSync.wsgi:application
|
||||||
|
volumes:
|
||||||
|
- .:/app
|
||||||
|
- ./static:/app/static
|
||||||
|
- ./media:/app/media
|
||||||
|
ports:
|
||||||
|
- "8000:8000"
|
||||||
|
environment:
|
||||||
|
- DJANGO_SECRET_KEY=${DJANGO_SECRET_KEY}
|
||||||
|
- DJANGO_DEBUG=${DJANGO_DEBUG}
|
||||||
|
- DJANGO_ALLOWED_HOSTS=${DJANGO_ALLOWED_HOSTS}
|
||||||
|
- DJANGO_DB_NAME=${DJANGO_DB_NAME}
|
||||||
|
- DJANGO_DB_USER=${DJANGO_DB_USER}
|
||||||
|
- DJANGO_DB_PASSWORD=${DJANGO_DB_PASSWORD}
|
||||||
|
- DJANGO_DB_HOST=${DJANGO_DB_HOST}
|
||||||
|
- DJANGO_DB_PORT=${DJANGO_DB_PORT}
|
||||||
|
env_file:
|
||||||
|
- .env
|
||||||
|
deploy:
|
||||||
|
resources:
|
||||||
|
limits:
|
||||||
|
memory: 512M
|
||||||
|
cpus: "0.5"
|
||||||
|
reservations:
|
||||||
|
memory: 128M
|
||||||
|
cpus: "0.2"
|
||||||
Loading…
x
Reference in New Issue
Block a user