Skip to content
This repository has been archived by the owner on Dec 31, 2023. It is now read-only.

Commit

Permalink
Add docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
hardingadonis committed Nov 16, 2023
1 parent fd0c45b commit e807ee7
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
version: '3'

services:
database:
image: ghcr.io/hardingadonis/miu-shop-database:1.0.0
ports:
- "3306:3306"

server:
image: ghcr.io/hardingadonis/miu-shop-server:1.0.0
ports:
- "8080:8080"
depends_on:
- database

0 comments on commit e807ee7

Please sign in to comment.