Skip to content
New issue

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

Segmentation fault (core dumped) #1

Open
dm-coding opened this issue May 16, 2017 · 0 comments
Open

Segmentation fault (core dumped) #1

dm-coding opened this issue May 16, 2017 · 0 comments

Comments

@dm-coding
Copy link

dm-coding commented May 16, 2017

Hi there,

I'm trying to start a new project but I am getting a restarting container with the message "Segmentation fault (core dumped)". Any ideas? Here's my docker-compose and Dockerfile:

`
version: '2'

services:
app:
restart: always
image: wagtail
build:
context: .
args:
- sitename=mysite
volumes:
- data:/var/www/html
ports:
- 80:8000

volumes:
data:
driver: local
`

Dockerfile:

FROM docker.io/apihackers/wagtail WORKDIR /var/www/html ARG sitename RUN wagtail start $sitename . && pip install -r requirements.txt && python3 manage.py migrate && ln -s /usr/bin/python3 /usr/bin/python CMD python manage.py runserver VOLUME /var/www/html

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant