Re-disable docker-compose db service
This commit is contained in:
parent
b45ea968d8
commit
f7b381757b
|
@ -1,15 +1,15 @@
|
||||||
version: '3'
|
version: '3'
|
||||||
services:
|
services:
|
||||||
|
|
||||||
db:
|
# db:
|
||||||
restart: always
|
# restart: always
|
||||||
image: postgres:9.6-alpine
|
# image: postgres:9.6-alpine
|
||||||
networks:
|
# networks:
|
||||||
- internal_network
|
# - internal_network
|
||||||
healthcheck:
|
# healthcheck:
|
||||||
test: ["CMD", "pg_isready", "-U", "postgres"]
|
# test: ["CMD", "pg_isready", "-U", "postgres"]
|
||||||
volumes:
|
# volumes:
|
||||||
- ./postgres:/var/lib/postgresql/data
|
# - ./postgres:/var/lib/postgresql/data
|
||||||
|
|
||||||
redis:
|
redis:
|
||||||
restart: always
|
restart: always
|
||||||
|
@ -47,7 +47,7 @@ services:
|
||||||
ports:
|
ports:
|
||||||
- "127.0.0.1:3000:3000"
|
- "127.0.0.1:3000:3000"
|
||||||
depends_on:
|
depends_on:
|
||||||
- db
|
# - db
|
||||||
- redis
|
- redis
|
||||||
# - es
|
# - es
|
||||||
volumes:
|
volumes:
|
||||||
|
@ -67,7 +67,7 @@ services:
|
||||||
ports:
|
ports:
|
||||||
- "127.0.0.1:4000:4000"
|
- "127.0.0.1:4000:4000"
|
||||||
depends_on:
|
depends_on:
|
||||||
- db
|
# - db
|
||||||
- redis
|
- redis
|
||||||
|
|
||||||
sidekiq:
|
sidekiq:
|
||||||
|
@ -77,7 +77,7 @@ services:
|
||||||
env_file: .env.production
|
env_file: .env.production
|
||||||
command: bundle exec sidekiq
|
command: bundle exec sidekiq
|
||||||
depends_on:
|
depends_on:
|
||||||
- db
|
# - db
|
||||||
- redis
|
- redis
|
||||||
networks:
|
networks:
|
||||||
- external_network
|
- external_network
|
||||||
|
|
Loading…
Reference in New Issue