Skip to content

Commit

Permalink
add configuration to use django sample with Docker Dev Environments f…
Browse files Browse the repository at this point in the history
…eature (docker#252)

Signed-off-by: Guillaume Lours <guillaume.lours@docker.com>
  • Loading branch information
glours authored Jul 12, 2022
1 parent 34115dc commit f716bfb
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 2 deletions.
9 changes: 9 additions & 0 deletions django/.docker/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
services:
web:
build:
context: app
target: dev-envs
ports:
- '8000:8000'
volumes:
- /var/run/docker.sock:/var/run/docker.sock
7 changes: 7 additions & 0 deletions django/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,10 @@ Stop and remove the containers
```
$ docker compose down
```
## Use with Docker Development Environments

You can use this sample with the Dev Environments feature of Docker Desktop.
To develop directly the web service inside a container, you just need to use the https git url of the sample:
`https://github.com/docker/awesome-compose/tree/master/django`

![page](../dev-envs.png)
18 changes: 17 additions & 1 deletion django/app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,24 @@
FROM python:3.7-alpine
# syntax=docker/dockerfile:1.4

FROM --platform=$BUILDPLATFORM python:3.7-alpine AS builder
EXPOSE 8000
WORKDIR /app
COPY requirements.txt /app
RUN pip3 install -r requirements.txt --no-cache-dir
COPY . /app
ENTRYPOINT ["python3"]
CMD ["manage.py", "runserver", "0.0.0.0:8000"]

FROM builder as dev-envs
RUN <<EOF
apk update
apk add git
EOF

RUN <<EOF
addgroup -S docker
adduser -S --shell /bin/bash --ingroup docker vscode
EOF
# install Docker tools (cli, buildx, compose)
COPY --from=gloursdocker/docker / /
CMD ["manage.py", "runserver", "0.0.0.0:8000"]
4 changes: 3 additions & 1 deletion django/compose.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
services:
web:
build: app
build:
context: app
target: builder
ports:
- '8000:8000'

0 comments on commit f716bfb

Please sign in to comment.