Skip to content

Commit

Permalink
Adding docker compose file to prod
Browse files Browse the repository at this point in the history
  • Loading branch information
vikhyat187 committed Dec 26, 2023
1 parent 241eeec commit 743394c
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions skill-tree/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
version: '3.1'

services:
db:
image: mysql
environment:
MYSQL_ROOT_PASSWORD: 'testpassword'
ports:
- "3306:3306"
expose:
- "3306"
restart: always
adminer:
image: adminer
restart: always
ports:
- 9000:8080

0 comments on commit 743394c

Please sign in to comment.