Skip to content

Commit

Permalink
refactor(dev): update docker-compose naming
Browse files Browse the repository at this point in the history
  • Loading branch information
NotFish232 committed Apr 4, 2024
1 parent 3652e31 commit ab31b99
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions config/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.9'

services:
redis:
container_name: server
container_name: redis
image: redis:latest
networks:
- intranet_net
Expand All @@ -23,9 +23,9 @@ services:
volumes:
- pgdata:/var/lib/postgresql/data

application:
intranet:
container_name: intranet
image: application
image: intranet_image
networks:
- intranet_net
entrypoint:
Expand All @@ -48,7 +48,7 @@ services:

celery:
container_name: celery
image: application
image: intranet_image
networks:
- intranet_net
entrypoint:
Expand All @@ -59,13 +59,13 @@ services:
celery --app intranet worker -l info --without-gossip --without-mingle --without-heartbeat -Ofair"
]
depends_on:
- application
- intranet
volumes:
- ../../:/ion:z

celerybeat:
container_name: celerybeat
image: application
image: intranet_image
networks:
- intranet_net
entrypoint:
Expand All @@ -76,7 +76,7 @@ services:
celery --app intranet beat -l info"
]
depends_on:
- application
- intranet
volumes:
- ../../:/ion:z

Expand Down

0 comments on commit ab31b99

Please sign in to comment.