mirror of
https://github.com/yeasy/docker_practice.git
synced 2025-06-08 01:42:11 +08:00
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"
|