add configuration to use django sample with Docker Dev Environments feature (#252)
Signed-off-by: Guillaume Lours <guillaume.lours@docker.com>
This commit is contained in:
parent
34115dcd3c
commit
f716bfb382
9
django/.docker/docker-compose.yaml
Normal file
9
django/.docker/docker-compose.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
services:
|
||||||
|
web:
|
||||||
|
build:
|
||||||
|
context: app
|
||||||
|
target: dev-envs
|
||||||
|
ports:
|
||||||
|
- '8000:8000'
|
||||||
|
volumes:
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
@ -50,3 +50,10 @@ Stop and remove the containers
|
|||||||
```
|
```
|
||||||
$ docker compose down
|
$ 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)
|
@ -1,4 +1,6 @@
|
|||||||
FROM python:3.7-alpine
|
# syntax=docker/dockerfile:1.4
|
||||||
|
|
||||||
|
FROM --platform=$BUILDPLATFORM python:3.7-alpine AS builder
|
||||||
EXPOSE 8000
|
EXPOSE 8000
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY requirements.txt /app
|
COPY requirements.txt /app
|
||||||
@ -6,3 +8,17 @@ RUN pip3 install -r requirements.txt --no-cache-dir
|
|||||||
COPY . /app
|
COPY . /app
|
||||||
ENTRYPOINT ["python3"]
|
ENTRYPOINT ["python3"]
|
||||||
CMD ["manage.py", "runserver", "0.0.0.0:8000"]
|
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"]
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
services:
|
services:
|
||||||
web:
|
web:
|
||||||
build: app
|
build:
|
||||||
|
context: app
|
||||||
|
target: builder
|
||||||
ports:
|
ports:
|
||||||
- '8000:8000'
|
- '8000:8000'
|
||||||
|
Loading…
Reference in New Issue
Block a user