oacpl/docker-compose.yml
ztimson f4111cc264
Some checks failed
Build / Build & Push Dockerfile (push) Failing after 7s
Updated readme, legal & ci/cd
2023-12-14 19:06:07 -05:00

16 lines
209 B
YAML

version: '3.8'
services:
db:
image: postgres
web:
image: git.zakscode.com/ztimson/oacpl:latest
build: .
volumes:
- .:/code
ports:
- "8000:8000"
depends_on:
- db