Skip to content

Commit

Permalink
chore(gitpod): run mysql, pgsql and mongo as docker containers
Browse files Browse the repository at this point in the history
  • Loading branch information
mrsimonemms committed Dec 12, 2022
1 parent 949920e commit ca0a935
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,31 @@
tasks:
- name: MySQL
command: |
docker run \
-e MYSQL_ROOT_PASSWORD=password \
-e MYSQL_DATABASE=gobblr \
--rm \
-p 3306:3306 \
--name mysql \
mysql
- name: MongoDB
command: |
docker run \
--rm \
-p 27017:27017 \
--name mongodb \
mongo
- name: PostgreSQL
command: |
docker run \
-e POSTGRES_PASSWORD=password \
--rm \
-p 5432:5432 \
--name pgsql \
postgres
- before: |
curl -sfL gpm.simonemms.com | bash
Expand Down

0 comments on commit ca0a935

Please sign in to comment.