Skip to content

Commit

Permalink
refactor(docker-compose): set image version as development for develo…
Browse files Browse the repository at this point in the history
…ping (#372)
  • Loading branch information
CarelessInternet authored Mar 5, 2024
1 parent e6b2c04 commit bb1b265
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
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

0 comments on commit bb1b265

Please sign in to comment.