mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 09:41:40 -05:00
Rename volumes to dawarich_...
This commit is contained in:
parent
d3c80e2b18
commit
f94ea5516e
1 changed files with 15 additions and 15 deletions
|
|
@ -8,7 +8,7 @@ services:
|
||||||
networks:
|
networks:
|
||||||
- dawarich
|
- dawarich
|
||||||
volumes:
|
volumes:
|
||||||
- shared_data:/var/shared/redis
|
- dawarich_shared:/var/shared/redis
|
||||||
restart: always
|
restart: always
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: [ "CMD", "redis-cli", "--raw", "incr", "ping" ]
|
test: [ "CMD", "redis-cli", "--raw", "incr", "ping" ]
|
||||||
|
|
@ -20,8 +20,8 @@ services:
|
||||||
image: postgres:14.2-alpine
|
image: postgres:14.2-alpine
|
||||||
container_name: dawarich_db
|
container_name: dawarich_db
|
||||||
volumes:
|
volumes:
|
||||||
- db_data:/var/lib/postgresql/data
|
- dawarich_db_data:/var/lib/postgresql/data
|
||||||
- shared_data:/var/shared
|
- dawarich_shared:/var/shared
|
||||||
networks:
|
networks:
|
||||||
- dawarich
|
- dawarich
|
||||||
environment:
|
environment:
|
||||||
|
|
@ -38,9 +38,9 @@ services:
|
||||||
image: freikin/dawarich:latest
|
image: freikin/dawarich:latest
|
||||||
container_name: dawarich_app
|
container_name: dawarich_app
|
||||||
volumes:
|
volumes:
|
||||||
- gem_cache_app:/usr/local/bundle/gems_app
|
- dawarich_gem_cache_app:/usr/local/bundle/gems_app
|
||||||
- public:/var/app/public
|
- dawarich_public:/var/app/public
|
||||||
- watched:/var/app/tmp/imports/watched
|
- dawarich_watched:/var/app/tmp/imports/watched
|
||||||
networks:
|
networks:
|
||||||
- dawarich
|
- dawarich
|
||||||
ports:
|
ports:
|
||||||
|
|
@ -96,9 +96,9 @@ services:
|
||||||
image: freikin/dawarich:latest
|
image: freikin/dawarich:latest
|
||||||
container_name: dawarich_sidekiq
|
container_name: dawarich_sidekiq
|
||||||
volumes:
|
volumes:
|
||||||
- gem_cache_sidekiq:/usr/local/bundle/gems_sidekiq
|
- dawarich_gem_cache_sidekiq:/usr/local/bundle/gems_sidekiq
|
||||||
- public:/var/app/public
|
- dawarich_public:/var/app/public
|
||||||
- watched:/var/app/tmp/imports/watched
|
- dawarich_watched:/var/app/tmp/imports/watched
|
||||||
networks:
|
networks:
|
||||||
- dawarich
|
- dawarich
|
||||||
stdin_open: true
|
stdin_open: true
|
||||||
|
|
@ -151,9 +151,9 @@ services:
|
||||||
memory: '2G' # Limit memory usage to 2GB
|
memory: '2G' # Limit memory usage to 2GB
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
db_data:
|
dawarich_db_data:
|
||||||
gem_cache_app:
|
dawarich_gem_cache_app:
|
||||||
gem_cache_sidekiq:
|
dawarich_gem_cache_sidekiq:
|
||||||
shared_data:
|
dawarich_shared:
|
||||||
public:
|
dawarich_public:
|
||||||
watched:
|
dawarich_watched:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue