Merge pull request #3323 from Minnozz/docker-bind-ro

Docker: make bind mounts of source code read only
This commit is contained in:
Mouse Reeve 2024-03-23 07:51:00 -07:00 committed by GitHub
commit b508b4cd33
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 11 additions and 9 deletions

1
.gitignore vendored
View file

@ -16,6 +16,7 @@
# BookWyrm # BookWyrm
.env .env
/images/ /images/
/static/
bookwyrm/static/css/bookwyrm.css bookwyrm/static/css/bookwyrm.css
bookwyrm/static/css/themes/ bookwyrm/static/css/themes/
!bookwyrm/static/css/themes/bookwyrm-*.scss !bookwyrm/static/css/themes/bookwyrm-*.scss

View file

@ -11,7 +11,7 @@ services:
networks: networks:
- main - main
volumes: volumes:
- ./nginx:/etc/nginx/conf.d - ./nginx:/etc/nginx/conf.d:ro
- static_volume:/app/static - static_volume:/app/static
- media_volume:/app/images - media_volume:/app/images
db: db:
@ -26,7 +26,7 @@ services:
env_file: .env env_file: .env
command: python manage.py runserver 0.0.0.0:8000 command: python manage.py runserver 0.0.0.0:8000
volumes: volumes:
- .:/app - .:/app:ro
- static_volume:/app/static - static_volume:/app/static
- media_volume:/app/images - media_volume:/app/images
depends_on: depends_on:
@ -41,7 +41,7 @@ services:
image: redis:7.2.1 image: redis:7.2.1
command: redis-server --requirepass ${REDIS_ACTIVITY_PASSWORD} --appendonly yes --port ${REDIS_ACTIVITY_PORT} command: redis-server --requirepass ${REDIS_ACTIVITY_PASSWORD} --appendonly yes --port ${REDIS_ACTIVITY_PORT}
volumes: volumes:
- ./redis.conf:/etc/redis/redis.conf - ./redis.conf:/etc/redis/redis.conf:ro
- redis_activity_data:/data - redis_activity_data:/data
env_file: .env env_file: .env
networks: networks:
@ -51,7 +51,7 @@ services:
image: redis:7.2.1 image: redis:7.2.1
command: redis-server --requirepass ${REDIS_BROKER_PASSWORD} --appendonly yes --port ${REDIS_BROKER_PORT} command: redis-server --requirepass ${REDIS_BROKER_PASSWORD} --appendonly yes --port ${REDIS_BROKER_PORT}
volumes: volumes:
- ./redis.conf:/etc/redis/redis.conf - ./redis.conf:/etc/redis/redis.conf:ro
- redis_broker_data:/data - redis_broker_data:/data
env_file: .env env_file: .env
networks: networks:
@ -63,9 +63,8 @@ services:
networks: networks:
- main - main
command: celery -A celerywyrm worker -l info -Q high_priority,medium_priority,low_priority,streams,images,suggested_users,email,connectors,lists,inbox,imports,import_triggered,broadcast,misc command: celery -A celerywyrm worker -l info -Q high_priority,medium_priority,low_priority,streams,images,suggested_users,email,connectors,lists,inbox,imports,import_triggered,broadcast,misc
volumes: volumes:
- .:/app - .:/app:ro
- static_volume:/app/static - static_volume:/app/static
- media_volume:/app/images - media_volume:/app/images
depends_on: depends_on:
@ -79,7 +78,7 @@ services:
- main - main
command: celery -A celerywyrm beat -l INFO --scheduler django_celery_beat.schedulers:DatabaseScheduler command: celery -A celerywyrm beat -l INFO --scheduler django_celery_beat.schedulers:DatabaseScheduler
volumes: volumes:
- .:/app - .:/app:ro
- static_volume:/app/static - static_volume:/app/static
- media_volume:/app/images - media_volume:/app/images
depends_on: depends_on:
@ -90,7 +89,7 @@ services:
command: celery -A celerywyrm flower --basic_auth=${FLOWER_USER}:${FLOWER_PASSWORD} --url_prefix=flower command: celery -A celerywyrm flower --basic_auth=${FLOWER_USER}:${FLOWER_PASSWORD} --url_prefix=flower
env_file: .env env_file: .env
volumes: volumes:
- .:/app - .:/app:ro
- static_volume:/app/static - static_volume:/app/static
networks: networks:
- main - main
@ -103,7 +102,9 @@ services:
env_file: .env env_file: .env
volumes: volumes:
- /app/dev-tools/ - /app/dev-tools/
- .:/app - .:/app:rw
profiles:
- tools
volumes: volumes:
pgdata: pgdata:
static_volume: static_volume:

0
images/.gitkeep Normal file
View file

0
static/.gitkeep Normal file
View file