Skip to content

Commit 09092c3

Browse files
committed
Moved and renamed Docker files
The name of the Docker Compose file now matches more closely with the ones in the Docker docs, e.g. `compose.yaml` in https://docs.docker.com/compose/gettingstarted/#step-2-define-services-in-a-compose-file and `compose.<something>.yaml` in https://docs.docker.com/compose/how-tos/multiple-compose-files/merge/ Chose a `.dev` suffix for it, to make it clearer that it's only used for development stuff (not production).
1 parent d4b684e commit 09092c3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
File renamed without changes.

docker-compose.yml renamed to docker/compose.dev.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ version: '3'
22

33
services:
44
web:
5-
build: .
5+
build: ..
66
command: >
77
bash -c "uv run manage.py migrate
88
&& uv run manage.py runserver 0.0.0.0:8000"
99
volumes:
10-
- ./:/web
10+
- ../:/web
1111
ports:
1212
- "8000:8000"
1313
env_file:
14-
- .env
14+
- ../.env

0 commit comments

Comments
 (0)