mirror of
https://github.com/yeasy/docker_practice.git
synced 2024-11-14 18:43:38 +00:00
7d51bacb12
Signed-off-by: Kang Huaishuai <khs1994@khs1994.com>
14 lines
184 B
Go
14 lines
184 B
Go
version: "3"
|
|
services:
|
|
|
|
db:
|
|
image: postgres
|
|
|
|
web:
|
|
build: .
|
|
command: python manage.py runserver 0.0.0.0:8000
|
|
volumes:
|
|
- .:/code
|
|
ports:
|
|
- "8000:8000"
|