This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
backend/docker-compose.yml

30 lines
590 B
YAML
Raw Normal View History

version: '3.6'
2021-11-12 17:04:22 +00:00
volumes:
postgres:
services:
cdn:
image: nginx:alpine
volumes:
- ./dev/upload:/usr/share/nginx/html
- ./dev/nginx.conf:/etc/nginx/nginx.conf
ports:
- "9000:80"
environment:
- NGINX_PORT=80
restart: unless-stopped
zdamegzzawodowydb:
image: postgres:12.10
container_name: zdamegzzawodowydb
restart: unless-stopped
volumes:
2021-11-12 17:04:22 +00:00
- 'postgres:/var/lib/postgresql/data'
ports:
- "5432:5432"
environment:
- POSTGRES_PASSWORD=zdamegzzawodowy
- POSTGRES_DB=zdamegzzawodowy
2021-11-12 17:04:22 +00:00
- TZ=UTC