Changed filenames and .gitignore to allow a working docker-compose next to the example provided

This commit is contained in:
chimiana 2022-12-17 00:25:46 +00:00
parent 9137698245
commit 63f3849872
2 changed files with 10 additions and 0 deletions

3
.gitignore vendored
View file

@ -33,6 +33,9 @@ coverage
!/.config/example.yml
!/.config/docker_example.env
#docker dev config
/dev/docker-compose.yml
# misskey
/build
built

View file

@ -4,6 +4,7 @@ services:
web:
image: docker.io/thatonecalculator/calckey
build: ..
container_name: calckey_web
restart: always
depends_on:
- db
@ -13,12 +14,14 @@ services:
- "3000:3000"
networks:
- network
# - web
volumes:
- ../files:/calckey/files
- ../.config:/calckey/.config:ro
redis:
restart: always
container_name: calckey_redis
image: docker.io/redis:7.0-alpine
networks:
- network
@ -27,6 +30,7 @@ services:
db:
restart: always
container_name: calckey_db
image: docker.io/postgres:12.2-alpine
networks:
- network
@ -48,3 +52,6 @@ services:
networks:
network:
# web:
# external:
# name: web