We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am getting an error when running "make install" :
Removing: /Users/i304143/Library/Caches/Homebrew/Cask/codelite-official--16.2.0.tar.gz... (87.1MB) Removing: /Users/i304143/Library/Logs/Homebrew/kubernetes-cli... (64B) Pruned 0 symbolic links and 13 directories from /usr/local Enter hostname [localhost]: Enter http port number [80]: sed: -i: No such file or directory version: "3" services: redis: image: redis restart: always postgres: image: postgres environment: POSTGRES_USER: user POSTGRES_PASSWORD: pass POSTGRES_DB: outline volumes: - ./data/pgdata:/var/lib/postgresql/data restart: always minio: image: minio/minio volumes: - ./data/minio_root:/minio_root:z - ./data/certs:/root/.minio/certs:z command: "minio server /minio_root" env_file: ./env.minio restart: always outline: image: outlinewiki/outline:latest command: sh -c "yarn sequelize:migrate --env production-ssl-disabled && yarn start" environment: - DATABASE_URL=postgres://user:pass@postgres:5432/outline - DATABASE_URL_TEST=postgres://user:pass@postgres:5432/outline-test - REDIS_URL=redis://redis:6379 env_file: - ./env.outline - ./env.slack restart: always depends_on: - postgres - redis - minio nginx: image: nginx ports: - 80:80 - 4443:443 volumes: - ./data/nginx/:/etc/nginx/conf.d/:z - ./data/certs/:/etc/ssl/certs/:z restart: always depends_on: - outline make: *** [env.outline] Error 1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am getting an error when running "make install" :
Removing: /Users/i304143/Library/Caches/Homebrew/Cask/codelite-official--16.2.0.tar.gz... (87.1MB)
Removing: /Users/i304143/Library/Logs/Homebrew/kubernetes-cli... (64B)
Pruned 0 symbolic links and 13 directories from /usr/local
Enter hostname [localhost]:
Enter http port number [80]:
sed: -i: No such file or directory
version: "3"
services:
redis:
image: redis
restart: always
postgres:
image: postgres
environment:
POSTGRES_USER: user
POSTGRES_PASSWORD: pass
POSTGRES_DB: outline
volumes:
- ./data/pgdata:/var/lib/postgresql/data
restart: always
minio:
image: minio/minio
volumes:
- ./data/minio_root:/minio_root:z
- ./data/certs:/root/.minio/certs:z
command: "minio server /minio_root"
env_file: ./env.minio
restart: always
outline:
image: outlinewiki/outline:latest
command: sh -c "yarn sequelize:migrate --env production-ssl-disabled && yarn start"
environment:
- DATABASE_URL=postgres://user:pass@postgres:5432/outline
- DATABASE_URL_TEST=postgres://user:pass@postgres:5432/outline-test
- REDIS_URL=redis://redis:6379
env_file:
- ./env.outline
- ./env.slack
restart: always
depends_on:
- postgres
- redis
- minio
nginx:
image: nginx
ports:
- 80:80
- 4443:443
volumes:
- ./data/nginx/:/etc/nginx/conf.d/:z
- ./data/certs/:/etc/ssl/certs/:z
restart: always
depends_on:
- outline
make: *** [env.outline] Error 1
The text was updated successfully, but these errors were encountered: