Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(docker-compose): set image version as development for developing #372

Merged
merged 1 commit into from
Mar 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .devcontainer/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ services:
- MYSQL_TCP_PORT=3307
ports:
- "3307:3307"

# Update this to the name of the service you want to work with in your docker-compose.yml file
bot:
# Uncomment if you want to override the service's Dockerfile to one in the .devcontainer
Expand All @@ -24,6 +24,7 @@ services:
build:
context: .
dockerfile: .devcontainer/bot/Dockerfile
image: ticketer-bot:development

networks:
- ticketer-development-database-network
Expand Down
1 change: 0 additions & 1 deletion base-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ services:
build:
context: .
dockerfile: ./apps/bot/Dockerfile
image: ticketer-bot:3.0.0
restart: unless-stopped
depends_on:
database:
Expand Down
1 change: 1 addition & 0 deletions compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ services:
extends:
file: base-compose.yaml
service: bot
image: ticketer-bot:3.0.0
networks:
- ticketer-database-network
# Reads the file(s) and exposes the variables when running the container. Undefined files are not allowed.
Expand Down
Loading