Switch Repo to notatio/notatio
This commit is contained in:
commit
9da51a1e6b
26 changed files with 4117 additions and 0 deletions
31
docker-compose.yaml
Normal file
31
docker-compose.yaml
Normal 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:
|
Loading…
Add table
Add a link
Reference in a new issue