Initial import
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
|
||||
version: "3.9"
|
||||
services:
|
||||
web:
|
||||
build: ./web
|
||||
env_file:
|
||||
- .env
|
||||
volumes:
|
||||
- ./web:/app
|
||||
- ./imports:/data/imports
|
||||
ports:
|
||||
- "8000:8000"
|
||||
depends_on:
|
||||
- db
|
||||
db:
|
||||
image: postgres:16-alpine
|
||||
environment:
|
||||
POSTGRES_DB: illustrations
|
||||
POSTGRES_USER: illustrations
|
||||
POSTGRES_PASSWORD: illustrations
|
||||
volumes:
|
||||
- db_data:/var/lib/postgresql/data
|
||||
volumes:
|
||||
db_data:
|
||||
Reference in New Issue
Block a user