WIP: Docker updates #13

Draft
mravi wants to merge 19 commits from docker into master
Showing only changes of commit 61d41a2879 - Show all commits

38
docker-compose.yml Normal file
View file

@ -0,0 +1,38 @@
version: '3.8'
services:
web:
build:
context: ./
dockerfile: Dockerfile
command: gunicorn dynamicweb.wsgi:application --bind [::]:8000
volumes:
- static_volume:/data/app/app/static
- media_volume:/data/app/app/media
expose:
- 8000
env_file:
- ./.env
depends_on:
- db
db:
image: postgres:13.0-alpine
volumes:
- ./init.sql:/docker-entrypoint-initdb.d/init.sql
- postgres_data:/data/var/lib/postgresql/data/
env_file:
- ./.env
nginx:
build: ./nginx
volumes:
- static_volume:/data/app/app/static
- media_volume:/data/app/app/media
ports:
- 1337:80
depends_on:
- web
volumes:
postgres_data:
static_volume:
media_volume: