Skip to content

Commit

Permalink
Fixed Docker Compose file. (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
Utar94 authored May 23, 2024
1 parent 97eed37 commit 3154222
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
version: '3.8'
services:
pokedata_mssql:
image: mcr.microsoft.com/mssql/server:2022-latest
container_name: PokeData_mssql
ports:
- 27945:1433
restart: unless-stopped
environment:
ACCEPT_EULA: 'Y'
ACCEPT_EULA: "Y"
MSSQL_SA_PASSWORD: m7tPnE6dB5TQxYCW
ports:
- 27945:1433

pokedata_api:
build:
Expand All @@ -32,5 +32,6 @@ services:
container_name: PokeData_app
depends_on:
- pokedata_api
restart: unless-stopped
ports:
- 43044:80

0 comments on commit 3154222

Please sign in to comment.