mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2025-10-11 00:56:17 +00:00
added proxy network
updated services in readme updated homepage
This commit is contained in:
@@ -13,6 +13,8 @@ services:
|
||||
container_name: redis
|
||||
volumes:
|
||||
- shared_data:/var/shared/redis
|
||||
networks:
|
||||
- proxy
|
||||
postgres14:
|
||||
image: postgres:14.2-alpine
|
||||
container_name: postgres14
|
||||
@@ -22,6 +24,8 @@ services:
|
||||
environment:
|
||||
POSTGRES_USER: postgres
|
||||
POSTGRES_PASSWORD: password
|
||||
networks:
|
||||
- proxy
|
||||
dawarich:
|
||||
image: freikin/dawarich:latest
|
||||
container_name: dawarich
|
||||
@@ -33,7 +37,7 @@ services:
|
||||
stdin_open: true
|
||||
tty: true
|
||||
entrypoint: dev-entrypoint.sh
|
||||
command: ['bin/dev']
|
||||
command: [ 'bin/dev' ]
|
||||
restart: on-failure
|
||||
environment:
|
||||
RAILS_ENV: development
|
||||
@@ -55,6 +59,8 @@ services:
|
||||
depends_on:
|
||||
- postgres14
|
||||
- redis
|
||||
networks:
|
||||
- proxy
|
||||
sidekiq:
|
||||
image: freikin/dawarich:latest
|
||||
container_name: sidekiq
|
||||
@@ -64,7 +70,7 @@ services:
|
||||
stdin_open: true
|
||||
tty: true
|
||||
entrypoint: dev-entrypoint.sh
|
||||
command: ['sidekiq']
|
||||
command: [ 'sidekiq' ]
|
||||
restart: on-failure
|
||||
environment:
|
||||
RAILS_ENV: development
|
||||
@@ -86,9 +92,15 @@ services:
|
||||
- postgres14
|
||||
- redis
|
||||
- dawarich
|
||||
networks:
|
||||
- proxy
|
||||
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
||||
|
||||
volumes:
|
||||
db_data:
|
||||
gem_cache:
|
||||
shared_data:
|
||||
public:
|
||||
public:
|
||||
|
Reference in New Issue
Block a user