]> Untitled Git - web-gallery.git/blob - docker-compose.yml
Initial hello
[web-gallery.git] / docker-compose.yml
1 version: '3'
2 services:
3     db:
4         image: postgres:13.4-alpine
5         environment:
6             POSTGRES_USER: admin
7             POSTGRES_PASSWORD: adminpw
8         ports:
9         - 5432:5432
10     web:
11         build: .
12         image: cjpalmer/gallery:0.1.0
13         volumes:
14         - ./app:/app
15         environment:
16             FLASK_DEBUG: 1
17         ports:
18         - 80:5000