Não pode escolher mais do que 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- version: '3'
-
- services:
- web:
- image: development
- build: .
- working_dir: /app
- command: >
- bash -c "python manage.py migrate
- && python3 manage.py collectstatic --noinput
- && gunicorn pinry.wsgi:application -b 0.0.0.0:8000 --timeout 30"
- ports:
- - "127.0.0.1:2048:8000"
- environment:
- - SECRET_KEY=CHANGE-ME
- - DJANGO_SETTINGS_MODULE=pinry.settings.development
- user: ${CURRENT_UID}
- volumes:
- - .:/app
- restart: always
- build_frontend:
- image: development
- build: .
- working_dir: /app/pinry-spa/
- command: >
- bash -c "yarn install && yarn build"
- user: ${CURRENT_UID}
- volumes:
- - .:/app
- restart: "no"
|