Switch Repo to notatio/notatio

This commit is contained in:
James Musselman 2023-11-20 22:10:40 -06:00
commit 9da51a1e6b
26 changed files with 4117 additions and 0 deletions

31
docker-compose.yaml Normal file
View file

@ -0,0 +1,31 @@
version: '3'
services:
notatio:
image: notatio/notatio
container_name: notatio
env_file:
- .env
volumes:
- ./notatio-uploads:/uploads
- ./editor_templates:/editor_templates
ports:
- "9991:9991"
command: ["./wait-for-postgres.sh", "postgres", "${PGPORT}", "./notatio"]
depends_on:
- postgres
networks:
- notatio-network
postgres:
image: postgres
container_name: postgres
env_file:
- .env
networks:
- notatio-network
#ports:
# - "5432:5432"
networks:
notatio-network: