Update docker-compose.dev.yaml
This commit is contained in:
parent
afd6711f64
commit
d198f9837a
@ -4,7 +4,7 @@ services:
|
|||||||
|
|
||||||
db:
|
db:
|
||||||
image: postgres
|
image: postgres
|
||||||
restart: always
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- ./../postgres_data:/var/lib/postgresql/data
|
- ./../postgres_data:/var/lib/postgresql/data
|
||||||
environment:
|
environment:
|
||||||
@ -17,7 +17,7 @@ services:
|
|||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
dockerfile: ./Dockerfiles/django/Dockerfile
|
dockerfile: ./Dockerfiles/django/Dockerfile
|
||||||
restart: always
|
restart: unless-stopped
|
||||||
entrypoint: /django-launcher.dev.sh
|
entrypoint: /django-launcher.dev.sh
|
||||||
volumes:
|
volumes:
|
||||||
- .:/usr/src/app/
|
- .:/usr/src/app/
|
||||||
@ -46,7 +46,7 @@ services:
|
|||||||
|
|
||||||
caddy:
|
caddy:
|
||||||
image: caddy:alpine
|
image: caddy:alpine
|
||||||
restart: always
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
- 80:80
|
- 80:80
|
||||||
- 443:443
|
- 443:443
|
||||||
@ -59,7 +59,7 @@ services:
|
|||||||
|
|
||||||
mailhog:
|
mailhog:
|
||||||
image: mailhog/mailhog:latest
|
image: mailhog/mailhog:latest
|
||||||
restart: always
|
restart: unless-stopped
|
||||||
expose:
|
expose:
|
||||||
- 1025:1025
|
- 1025:1025
|
||||||
ports:
|
ports:
|
||||||
|
Loading…
Reference in New Issue
Block a user