-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy path.gitpod.yml
More file actions
16 lines (14 loc) · 734 Bytes
/
Copy path.gitpod.yml
File metadata and controls
16 lines (14 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# This configuration file was automatically generated by Gitpod.
# Please adjust to your needs (see https://www.gitpod.io/docs/introduction/learn-gitpod/gitpod-yaml)
# and commit this file to your remote git repository to share the goodness with others.
# Learn more from ready-to-use templates: https://www.gitpod.io/docs/introduction/getting-started/quickstart
tasks:
- name: Start App
# init runs once for each commit to the default branch
init: |
docker-compose build --parallel
docker volume create --name=openstreetmap-data
docker volume create --name=openstreetmap-rendered-tiles
docker-compose run --rm api db upgrade
# command runs each time a user starts their workspace
command: docker-compose up