p5.js-web-editor/mongo/Dockerfile
2018-06-25 16:13:31 -07:00

13 lines
No EOL
272 B
Docker

# Use an official mongo runtime as a parent image
FROM mongo:3.4
# Expose the mongo port
EXPOSE 27017
# Copy the mongod.conf file to env
# COPY mongod.conf /env/
# Copy the entrypoint file as well
COPY ./docker-entrypoint.sh .
CMD ["/bin/bash", "docker-entrypoint.sh"]